:root{
            --gold:#d4a63d;
            --gold-light:#f0c76b;
            --dark:#050505;
            --dark2:#0e0e0e;
            --gray:#9b9b9b;
            --bs-dropdown-bg:var(--gray);
        }

        body{
            background:#000;
            color:#fff;
            font-family:'Inter',sans-serif;
            overflow-x:hidden;
        }

        h1,h2,h3,h4,h5{
            font-family:'Oswald',sans-serif;
            text-transform:uppercase;
            letter-spacing:1px;
        }

        a{
            text-decoration:none;
        }

        section{
            padding:50px 0;
        }

        .text-gold{
            color:var(--gold);
        }

        .btn-gold{
            background:var(--gold);
            color:#000;
            padding:14px 30px;
            border-radius:0;
            text-transform: uppercase;
            font-weight:600;
            transition:.3s;
        }

        .btn-border-gold:hover{
            background:var(--gold);
            color:#000;
        }

        .btn-border-gold{
            color: var(--gold-light);
            padding:14px 30px;
            border: 1px solid var(--gold-light);
            border-radius:0;
            text-transform: uppercase;
            font-weight:600;
            transition:.3s;
        }

  

        .color-gold {
            color: var(--gold-light);
        }

        .border-gold {
            border: 1px solid var(--gold-light);
        }

        .btn-gold:hover{
            background:var(--gold-light);
            color:#000;
        }

        .navbar{
            background:rgba(0,0,0,.9);
            backdrop-filter:blur(10px);
            border-bottom:1px solid rgba(212,166,61,.2);
        }

        .nav-link{
            color:#fff!important;
            margin-left:20px;
            text-transform:uppercase;
            font-size:14px;
            transition:.3s;
            border-bottom: 1px solid transparent;
        }

        .nav-link:hover,
        .nav-link.active {
            color:var(--gold)!important;
            border-bottom: 1px solid var(--gold);
        }

        .navbar .dropdown-menu {
            background: rgba(0,0,0,.9) !important;
            border: 1px solid var(--gold);
            --bs-dropdown-bg:var(--dark);
        }

        .navbar .dropdown-menu a {
            color:#fff;
           
        }

        .navbar .dropdown-menu a:hover,
        .dropdown-item.active {
            color:#fff;
           background-color:#d4a63d
        }

        .hero{
            min-height:95vh;
            display:flex;
            align-items:center;
            position:relative;
            background:
            linear-gradient(to right, rgba(0,0,0,.85) 20%, rgba(0,0,0,.15)),
            url('../images/herosekce-1.webp') no-repeat right/cover;
        }

        .hero-subtitle{
            color:var(--gold);
            font-weight:600;
            margin-bottom:20px;
            text-transform:uppercase;
            transform: scaleY(1.15);
        }

        .hero h1{
            font-size:80px;
            line-height:1.1em;
            margin-bottom:30px;
        }

        .hero p{
            color:#ddd;
            max-width:550px;
            line-height:1.8;
            margin-bottom:40px;
        }

        .podstranka-hero {
            background:  linear-gradient(to right, rgba(0,0,0,.85) 20%, rgba(0,0,0,.15)),
            url('../images/herosekce-2.webp') no-repeat right/cover;
            margin-top: 100px;
        }

        .linka {
            transition: all 0.5s;
        }

        .linka:hover {
            background: rgba(212,166,61,.3);
            border-color: white;
            
        }

        .podtrh::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin-top: 20px;
}

        .service-card{
            background:linear-gradient(180deg,#101010,#090909);
            border:1px solid rgba(255,255,255,.05);
            padding:40px 30px;
            height:100%;
            transition:.4s;
        }

        .service-card:hover{
            transform:translateY(-10px);
            border-color:rgba(212,166,61,.5);
        }

        .service-card i{
            color:var(--gold);
            font-size:42px;
            margin-bottom:25px;
        }

        .service-card h4{
            margin-bottom:15px;
            font-size:26px;
        }

        .service-card p{
            color:#bcbcbc;
            font-size:15px;
            line-height:1.7;
        }

        .section-title{
            font-size:64px;
            margin-bottom:20px;
        }

        .section-subtitle{
            color:var(--gold);
            text-transform:uppercase;
            transform: scaleY(1.15);
            font-weight:600;
            margin-bottom:10px;
        }

        .stats{
            margin-top:40px;
        }

        .stat-item h3{
            color:var(--gold);
            font-size:48px;
        }

        .stat-item span{
            color:#ccc;
        }

        footer{
            background: var(--dark2);
        }

        footer .container:last-child {
            border-top:1px solid rgba(255,255,255,.05);
        }

        footer h4 {
            color: var(--gold);
            font-size: 18px;
        }


        footer p{
            margin:0;
            color:#aaa;
        }

        footer .nav-link {
            text-transform: initial;
            font-size: 16px;
        }

        footer .nav-link:hover
         {
            border-bottom: 1px solid transparent !important;
        }

        @media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

        @media(max-width:991px){

            .hero{
                text-align:center;
                padding-top:120px;
            }

            .hero h1{
                font-size:50px;
            }

            .section-title{
                font-size:42px;
            }

            .navbar-nav{
                padding-top:20px;
            }

            .nav-link{
                margin-left:0;
                margin-bottom:10px;
            }
            footer .nav-link:hover,
        .collapse .nav-link:hover,
        .collapse .nav-link.active {
            border-bottom: 1px solid transparent;
        }
        .navbar .dropdown-menu {
    display: block;
    max-width: 350px;
    margin: 20px auto;
    
  }
            

        }

        @media(max-width:576px){

            .hero h1{
                font-size:42px;
            }

            section{
                padding:70px 0;
            }

            .service-card{
                padding:30px 25px;
            }

        }

        .contact-card,
.contact-form-wrapper{
    background: #111111;
    border: 1px solid var(--gold-light);
    border-radius: 5px;
}

.section-label{
    color: var(--gold-light);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.contact-title{
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.contact-heading{
    color: var(--gold-light);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.5rem;
}

.person-card{
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.person-card:first-child{
    border-top: 0;
    padding-top: 0;
}

.person-card h6{
    color: #fff;
    font-size: 1rem;
    margin-bottom: .35rem;
}

.person-card span{
    color: rgba(255,255,255,.55);
    font-size: .9rem;
}

.contact-link{
    display: inline-block;
    margin-top: .7rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.contact-link:hover{
    color: var(--gold-light);
}

.contact-item{
    margin-bottom: 1.5rem;
}

.contact-item span{
    display: block;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    margin-bottom: .3rem;
}

.contact-item a{
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.contact-item a:hover{
    color: var(--gold-light);
}

.company-info{
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.company-info strong{
    color: #fff;
    display: block;
    margin-bottom: 1rem;
}

.contact-form .form-label{
    color: rgba(255,255,255,.7);
    margin-bottom: .7rem;
}

.contact-form .form-control{
    background: #1b1b1b;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 5px;
}

.contact-form .form-control:focus{
    background: #1b1b1b;
    color: #fff;
    border-color: var(--gold-light);
    box-shadow: none;
}

.btn-gold{
    background: var(--gold-light);
    color: #000;
    border-radius: 0px;
    padding: 1rem 2rem;
    font-weight: 600;
    border: 0;
    transition: .3s;
}

.btn-gold:hover{
    background: #d9b57a;
    transform: translateY(-2px);
}

@media(max-width: 991px){

    .contact-title{
        font-size: 2rem;
    }

}