/* Base Styles */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #6d28d9;
    --bg-dark: #1a1a1a;
    --bg-light: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.tagline {
    font-size: 1.2rem;
    font-style: italic;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dark {
    background-color: var(--bg-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/hero-bg.jpg') center/cover;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info:last-child {
    margin-bottom: 0;
}

/* Privacy Section */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

/* Footer */
footer {
    background-color: var(--bg-light);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}
.youtube-background {
    position: relative;
    overflow: hidden;
  }
  
  .youtube-background .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none; /* Prevent interaction with the video */
  }
  
  .youtube-background iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .youtube-background .content {
    position: relative;
    z-index: 1; /* Ensure content is above the video */
    color: white; /* Adjust for readability */
    text-align: center;
    padding: 50px;
  }
  .logo {
    color: white !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-size: 1.5rem; /* Adjust as needed */
}

.logo-img {
    height: 30px; /* Adjust based on your desired logo size */
    width: auto; /* Maintains aspect ratio */
    margin-right: 8px; /* Adds spacing between the logo and text */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 15px; /* Adjust spacing between links */
}

.mobile-menu-btn {
    display: none; /* Show this with media queries for mobile */
}

/* Add responsive design if needed */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: none; /* Hide links by default on small screens */
    }
}
