@font-face {
    font-family: 'Alta';
    src: url('fonts/Alta_regular.woff2') format('woff2'),
         url('fonts/Alta-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #2C2C2C;
}

/* Navbar */
.navbar {
    background-color: #0A1A2F;
    position: sticky;
    top: 0;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text if both show */
}

/* Image responsiveness */
.navbar-logo img {
  height: 50px;   /* adjust as needed */
  width: auto;    /* keeps proportions */
}

/* Text fallback */
.navbar-logo span {
  font-family: 'Alta', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem); /* responsive font size */
  font-weight: normal;
  color: #CCC;
}


.navbar-links {
    display: flex;
    gap: 30px;
}

.navbar-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #FFD700;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #FFF;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-links {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: #0A1A2F;
        flex-direction: column;
        align-items: center;
        display: none;
        gap: 15px;
        padding: 20px 0;
    }

    .navbar-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background-image: url('images/hero1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #FFFFFF;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
}

.card {
    flex: 1;
    min-width: 150px;
    max-width: 220px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.card p {
    font-size: 16px;
    color: #0A1A2F;
    line-height: 1.5;
    font-weight: 500;
}

/* Products */
.products-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-section h1 {
    text-align: center;
    font-size: 42px;
    color: #0A1A2F;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.products-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.products-section h1:hover::after {
    width: 120px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.product-card {
    width: 100%;
    max-width: 350px;
    background: #0A1A2F;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mask-image: radial-gradient(circle, white 70%, transparent 100%);
    transition: opacity 0.3s ease;
}

.product-image .default-img {
    opacity: 1;
}

.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-image:hover .default-img {
    opacity: 0;
}

.product-image:hover .hover-img {
    opacity: 1;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin: 20px 0 10px;
    letter-spacing: 1px;
}

.gold-line {
    width: 50px;
    height: 2px;
    background: #D4AF37;
    margin: 0 auto 15px;
}

.product-subtitle {
    font-weight: 300;
    font-size: 18px;
    margin: 0 0 8px;
    color: #E0E0E0;
}

.product-description {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 25px;
    margin-bottom: 25px;
    color: #CCCCCC;
    flex-grow: 1;
}

.learn-more-btn {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 20px;
    display: block;
    text-decoration: none;
}

.learn-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.button-container {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px;
    gap: 10px;
}


        /* Training Section */
        .training-section {
            padding: 80px 20px;
            background: #0a1a2f;
            color: #fff;
        
            margin: 40px auto;
            max-width: 1200px;
        }
        
        .section-heading {
            text-align: center;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        .training-container {
            display: flex;
            align-items: stretch;
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
           
            overflow: hidden;
        }
        
        .training-image {
            flex: 1;
            min-height: 400px;
            background-image: url('images/training.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .training-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 26, 47, 0.4);
        }
        
        .training-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .training-title {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 25px;
            font-weight: 400;
        }
        
        .training-description {
            color: #e0e0e0;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 400px;
        }
        
        .register-btn {
            display: inline-block;
            background: transparent;
            color: #ffffff;
            padding: 14px 35px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
         
            transition: all 0.3s ease;
            border: 2px solid #ffffff;
            margin-top: 15px;
        }
        
        .register-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .training-container {
                flex-direction: column;
            }
            
            .training-image {
                min-height: 300px;
            }
            
            .section-heading {
                font-size: 2.2rem;
            }
            
            .training-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .training-content {
                padding: 30px 20px;
            }
            
            .section-heading {
                font-size: 2rem;
            }
            
            .training-title {
                font-size: 1.6rem;
            }
            
            .training-description {
                font-size: 1rem;
            }
        }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #0A1A2F 0%, #0C2340 100%);
    color: #E0E0E0;
    padding: 60px 20px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #D4AF37;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #D4AF37;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.footer-logo {
    font-family: 'Alta', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: #E0E0E0;
}

.footer-section p {
    font-size: 0.95rem;
    color: #E0E0E0;
    margin-bottom: 10px;
}

.footer-section a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section a:hover {
    color: #E8C96A;
    transform: translateX(5px);
}

.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin-bottom: 10px;
}

.nav-links a {
    font-size: 0.95rem;
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  
    border-radius: 50%;
    color: #0A1A2F;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {


    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #E0E0E0;
    margin: 5px 0;
}

.footer-bottom a {
    color: #D4AF37;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #E8C96A;
    text-decoration: underline;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #D4AF37;
    color: #0A1A2F;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    opacity: 1;
    background: #E8C96A;
    transform: translateY(-3px);
}

#backToTop.hidden {
    display: none;
}

/* Accordion Menu (Book Button and Logo) */
/* Center Button */
.button-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0; /* space above and below */
}

.book-now-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0A1A2F;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #FFFFFF;
  border-radius: 0; /* square corners */
  transition: all 0.3s ease;
  margin: 20px auto 0;
  text-align: center;
  max-width: 200px;

}

.book-now-btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}


.logo-container {
    max-width: 900px;
    margin: 20px auto 30px;
    text-align: center;
}

.logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);


}



/* Font Awesome for Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Responsive Design */
@media (max-width: 1024px) {
    .cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 50px 15px;
    }

    .card {
        flex: 1 1 180px;
        max-width: 200px;
    }

    .card img {
        width: 100px;
        height: 100px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card {
        max-width: 100%;
    }

    .ingredients-container {
        flex-direction: column;
    }

    .ingredients-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .ingredients-video {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cards {
        flex-wrap: wrap;
        gap: 15px;
        padding: 40px 15px;
    }

    .card {
        flex: 1 1 160px;
        max-width: 180px;
    }

    .card img {
        width: 90px;
        height: 90px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

   

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .logo-container {
        margin: 15px auto 25px;
    }

    .logo-image {
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }



    .social-links {
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .site-footer {
        padding: 40px 15px 20px;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 30px 10px;
    }

    .card {
        flex: 0 0 auto;
        max-width: 250px;
        width: 100%;
    }

    .card img {
        width: 80px;
        height: 80px;
    }

    .card p {
        font-size: 14px;
    }

    .products-section {
        padding: 40px 15px;
    }

    .products-section h1 {
        font-size: 32px;
    }

    .product-image {
        height: 300px;
    }

    .product-card {
        min-height: 480px;
    }

    .button-container {
        flex-direction: column;
        gap: 10px;
    }



    input[type="text"],
    input[type="email"],
    textarea,
    input[type="number"],
    input#math_answer {
        font-size: 14px;
    }

    button {
        font-size: 12px;
        padding: 10px 25px;
    }

    .book-now-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        max-width: 180px;
    }

    .logo-container {
        margin: 10px auto 20px;
    }

    .logo-image {
        max-width: 90%;
    }
}

/* About Section */
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        
        .about-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0a1a2f 0%, #1a3a5f 100%);
            color: #fff;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 60px;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-title {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
            font-weight: 300;
        }
        
        .about-title::after {
            content: "";
            width: 80px;
            height: 4px;
            background: #D4AF37;
            position: absolute;
            bottom: -12px;
            left: 0;
           
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: #e0e0e0;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .highlight {
            color: #d4af37;
            font-weight: 600;
        }
        
        /* Image styling */
        .about-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            position: relative;
        }
        
        .image-wrapper {
            position: relative;
            overflow: hidden;
           
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 480px;
        
        }
        
 
        
        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
   
     
        }
        

        
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 26, 47, 0.9));
            padding: 30px 20px 20px;
          
        }
        
        .owner-name {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 5px;
            color: #fff;
        }
        
        .owner-title {
            font-size: 1rem;
            color: #d4af37;
        }
        
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
                text-align: center;
            }
            
            .about-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-image {
                margin-top: 40px;
            }
            
            
        }
        
        @media (max-width: 768px) {
            .about-title {
                font-size: 2.2rem;
            }
            
            .about-content p {
                font-size: 1rem;
            }
        }
        
        /* Decorative elements */
        .decoration {
            position: absolute;
            z-index: 0;
        }
        
        .decoration-1 {
            width: 150px;
            height: 150px;
            border: 4px solid rgba(212, 175, 55, 0.15);
            border-radius: 50%;
            top: -20px;
            right: -20px;
        }
        
        .decoration-2 {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            bottom: -15px;
            left: -15px;
        }

.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0; /* top and bottom gap */
}

.contact-container {
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;

  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Remove forced 100vh */
.contact-left, 
.contact-right {
  flex: 1;
  min-height: 500px; /* keeps balance but not too tall */
}


/* LEFT SIDE - Form */
.contact-left {
  flex: 1;
  background: #0a1a2f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.form-wrapper {
  max-width: 450px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  text-align: center;
}

.form-wrapper h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.form-wrapper .subtitle {
  font-size: 1rem;
  color: #d4af37;
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.contact-form button {
  width: 50%;
  padding: 12px 30px;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 300;
  border: 2px solid #FFFFFF;
  border-radius: 0; /* square corners */
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #FFFFFF;
  color: #000000;
}



/* RIGHT SIDE - Image */
.contact-right {
  flex: 1;
  background: url("images/contact.jpeg") no-repeat center center/cover;
  position: relative;
}

.contact-right .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,26,47,0.3);
}

.certificate-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
 
}

.certificate-link:hover {

  color: #7e8566; /* contrast with footer background */
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
    min-height: 60vh;
  }

  .form-wrapper {
    padding: 30px 20px;
  }
}


  .certificate-link {
    display: block;            /* full width on small screens */
    text-align: center;
    margin: 15px auto 0;       /* center it nicely */
    padding: 10px 20px;        /* larger tap target */
    font-size: 1rem;
  }


