@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.6;
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-navbar {
    max-width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1030;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(18, 18, 18, 0.05);
    padding: 10px 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.7);
    transition: background-color 0.3s ease;
    position: relative;
}

.logo-container {
    position: relative;
    z-index: 15;
    margin-left: -200px;
}

.logo-container .logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(223, 184, 77, 0.7));
    transition: height 0.3s ease;
}

.nav-strip {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-grow: 1;
    margin-left: 60px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.navbar-nav .nav-link {
    color: #dfb84d;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #dfb84d;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #fff;
    transform: scale(1.1);
    background-color: rgba(223, 184, 77, 0.15);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
    width: 100%;
}

.navbar-nav .nav-item:last-child {
    margin-left: 120px;
}

.contact-btn {
    background-color: #dfb84d;
    color: #121212;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(223, 184, 77, 0.5);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.5;
}

.contact-btn:hover,
.contact-btn:focus {
    background-color: #fff;
    color: #121212;
    box-shadow: 0 6px 14px rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
}

.navbar-toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #dfb84d;
    display: block;
    position: relative;
    transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #dfb84d;
    position: absolute;
    left: 0;
    transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -10px;
}

.navbar-toggler-icon::after {
    top: 10px;
}




.header-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url('../images/header_image.png') no-repeat center center/cover;
    height: 100vh;
    padding-left: 50px;
    padding-top: 180px;
    position: relative;
    color: #f5f5f5;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.header-section .container {
    max-width: 75%;
    text-align: left;
    margin-left: 120px;
}

.special-text {
    font-family: 'Great Vibes', cursive;
    color: #dfb84d;
    font-size: 5.5rem;
    font-weight: bold;
    margin-top: 220px;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.header-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 6.5rem;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 4px;
}

.header-section p {
    font-family: 'Montserrat';
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 15px 0;
    color: #f5f5f5;
}

.cta-btn {
    font-family: 'Montserrat';
    background-color: #dfb84d;
    color: #121212;
    font-size: 2.2rem;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 6px 12px rgba(223, 184, 77, 0.6);
    transition: all 0.3s ease;
}

.cta-btn:hover,
.cta-btn:focus {
    background-color: #fff;
    color: #121212;
    border: none;
    border-radius: 30px;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.8);
}

@media (min-width: 1900px) {
  .logo-container .logo {
    height: 220px;
  }

  .special-text {
    font-size: 6.5rem;
    margin-top: 280px;
  }

  .header-title {
    font-size: 7rem;
  }

  .header-section p {
    font-size: 1.8rem;
    max-width: 800px;
  }

  .cta-btn {
    font-size: 2.5rem;
    padding: 18px 40px;
  }
}

@media (max-width: 1899px) {
    .logo-container .logo {
        height: 180px;
        width: auto;
        margin-left: 180px;
    }

    .nav-strip {
        gap: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .contact-btn {
        font-size: 1.1rem;
    }

    .header-section {
        padding-left: 80px;
        padding-top: 100px;
        height: 95vh;
    }

    .header-section .container {
        max-width: 85%;
        margin-left: 0;
    }

    .special-text {
        font-size: 4rem;
        margin-top: 150px;
    }

    .header-title {
        font-size: 5rem;
    }

    .header-section p {
        font-size: 1.2rem;
        max-width: 600px;
    }

    .cta-btn {
        font-size: 1.8rem;
        padding: 10px 20px;
    }
}


@media (max-width: 1402px) {
  .logo-container {
    margin-right: -60px;
  }

  .logo-container .logo {
    height: 140px;
  }

  .contact-btn {
    margin-left: -110px;
  }
  .custom-navbar {
    margin-left: 140px;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
    
}
  
}

@media (max-width: 1227px) {
  .logo-container {
    margin-right: -60px;
  }

  .logo-container .logo {
    height: 130px;
  }

  .contact-btn {
    margin-left: -110px;
    font-size: 1rem;
  }
  .custom-navbar {
    margin-left: 80px;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
    
}
  
}

@media (max-width: 1185px) {
  .logo-container {
    margin-right: -60px;
  }

  .logo-container .logo {
    height: 130px;
  }

  .contact-btn {
    margin-left: -110px;
    font-size: 0.9rem;
  }
  .custom-navbar {
    margin-left: -20px;
  }
  .navbar-nav .nav-link {
    font-size: 0.8rem;
    
}
  
}

@media (max-width: 996px) {
  .logo-container {
    margin-right: -70px;
  }

  .logo-container .logo {
    height: 100px;
  }

  .contact-btn {
    margin-left: -120px;
    font-size: 0.7rem;
  }
  .custom-navbar {
    margin-left: 70px;
  }
  .navbar-nav .nav-link {
    font-size: 0.7rem;
  }
  
}

@media (max-width: 768px) {
    .logo-container .logo {
        height: 70px;
        margin-top: 0;
    }

    .header-section {
        padding: 20px;
        text-align: center;
        height: auto;
        padding-top: 110px;
    }

    .special-text {
        font-family: 'Montserrat', sans-serif;
        color: #dfb84d;
        font-size: 2.2rem;
        font-weight: bold;
        max-width: 80%;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .header-title {
        font-size: 2rem;
        margin-top: 10px;
        letter-spacing: 2px;
    }

    .header-section p {
        font-size: 0.9rem;
        max-width: 70%;
        line-height: 1.3;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .nav-strip {
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95);
        padding: 10px 0;
        border-radius: 0 0 10px 10px;
        display: none;
    }

    .nav-strip.active {
        display: flex;
    }

    .navbar-toggler {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 20;
        position: relative;
        width: 30px;
        height: 25px;
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        display: block;
        background-color: #dfb84d;
        height: 3px;
        border-radius: 2px;
        position: absolute;
        width: 100%;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon {
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-toggler-icon::before {
        top: -10px;
    }

    .navbar-toggler-icon::after {
        top: 10px;
    }
}
