/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

p {
    font-family: 'Inter', sans-serif;
}

a {
    color: inherit;
    text-decoration: underline;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 2rem 0;
    background: transparent;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-image {
    height: 300px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 85, 104, 0.7);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    color: #faf8f5;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 3rem;
}

.hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #faf8f5;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-button {
    background-color: #faf8f5;
    color: #333;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.hero-button:hover {
    opacity: 0.9;
}

.play-video-btn {
    background-color: rgba(250, 248, 245, 0.8);
    color: #333;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
    display: none;
    backdrop-filter: blur(10px);
    opacity: 0.9;
}

.play-video-btn:hover {
    background-color: rgba(250, 248, 245, 1);
    transform: translateY(-2px);
}

.play-video-btn i {
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #e2e8f0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-grid {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.about-title {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #1a202c;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1a202c;
}

/* Location Section */
.Location {
    padding: 5rem 0;
    background-color: #f7fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.objectives-title {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #4a5568;
}

.objectives-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.dashboard-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-image img {
    height: auto;
}

.objectives-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #4a5568;
    color: #faf8f5;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.footer-section p {
    width: 80%;
}

.footer-section h3 {
    font-family: 'Fraunces', serif;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #faf8f5;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section ul li a {
    font-size: 24px;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 0.6;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    color: #faf8f5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .objectives-content {
        order: -1;
    }
    
    .objectives-image {
        order: 1;
    }

    .objectives-title, .objectives-intro {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section p {
        width: 100%;
        margin: 0 auto;
    }

    .footer-section ul {
        justify-content: center;
    }

    .hero-logo .logo-image {
        height: 130px;
    }

    /* Mobile video control - show poster by default */
    .hero-video {
        display: block;
    }

    /* Show play button only on mobile */
    .play-video-btn {
        display: block;
        width: auto;
        margin-top: 0.75rem;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-button {
        margin-bottom: 0;
    }
}