<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

   /* Header bar */
.header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;            /* tighter vertical space */
}

/* Full-width row, logo flush left */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;             /* keep menu inline */
  padding: 0;          /* 0 left padding = flush to screen edge */
}

/* Logo wrapper + IMG sizing */
.logo {
 font-family: 'Coronet', cursive;  /* pick a strong, readable font */
  font-size: 1.75rem;             /* adjust size */
  font-weight: 700;
  color: white;                   /* adjust for background */
  margin: 0;
}

/* Menu stays on one line */
.nav-menu {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-menu a:hover { color: #3498db; }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 2rem 80px;
            text-align: center;
            margin-top: 80px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;                /* Full width */
            max-width: none;            /* Remove max-width constraint */
            margin: 0;                  /* Remove auto margins */
            color: #fff;
            padding: 6rem 2rem;         /* Use rem for responsive padding */
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-primary {
            background: #e74c3c;
            color: white;
        }

        .cta-primary:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-secondary:hover {
            background: white;
            color: #667eea;
            transform: translateY(-2px);
        }

        /* Navigation Buttons Section */
        .nav-buttons {
            padding: 80px 2rem;
            background: white;
        }

        .nav-buttons-container {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .nav-btn {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 20px;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: block;
        }

        .nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
        }

        /* Image Gallery */
        .image-gallery {
            padding: 80px 2rem;
            background: #f8f9fa;
        }

        .gallery-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .image-box {
            aspect-ratio: 1;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .image-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .image-box:nth-child(odd) {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
        }

        .image-box:nth-child(3n) {
            background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
        }

        .image-box:nth-child(4n) {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
        }

        /* Social Media Section */
        .social-media {
            padding: 80px 2rem;
            background: white;
        }

        .social-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .social-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            justify-items: center;
        }

        .social-embed {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            width: 100%;
            max-width: 450px;
        }

        .social-embed h3 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .embed-container {
            position: relative;
            width: 100%;
        }

        .embed-container iframe {
            border-radius: 10px;
            max-width: 100%;
            height: auto;
        }

        .youtube-link {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .youtube-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
            color: white;
            text-decoration: none;
        }

        /* Mobile Responsiveness for Social */
        @media (max-width: 768px) {
            .social-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .social-embed {
                max-width: 100%;
                padding: 1.5rem;
            }

            .embed-container iframe {
                width: 100%;
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .social-title {
                font-size: 2rem;
            }

            .embed-container iframe {
                height: 200px;
            }
        }
        .footer {
            background: #2c3e50;
            color: white;
            padding: 60px 2rem 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #3498db;
        }

        .footer-section p,
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #3498db;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
        }

        @media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero {
        min-height: 80vh;
    }
    
    .hero-video {
        width: 100vw;
        height: 80vh;
        object-position: center top;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
       @media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-video {
        height: 70vh;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2rem;
    }
}
            .hero {
  position: relative;
  min-height: 80vh;      /* give it space to show */
  width: 100%;
  overflow: hidden;
}

.hero::after {           /* optional dark overlay for text readability */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.hero-content {
  position: relative;
  z-index: 2;            /* above overlay and video */
  color: #fff;
  padding: 6rem 1.5rem;  /* adjust to taste */
  text-align: center;
}

    </style>