:root {
    --primary-bg: #F5F5F5;
    --secondary-bg: #282828;
    --text-dark: #333333;
    --text-light: #E0E0E0;
    --accent-gold: #C69947;
    --accent-teal: #5D7B7B;
    --header-bg: rgba(26, 26, 26, 0.95); /* Slightly transparent for depth */
    --card-bg: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below images */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.8em; }
h3 { font-size: 1.8em; }

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* For scroll reveal animations */
}

.section-title {
    text-align: center;
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.15em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* Header & Navigation */
.main-header {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-light);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* For Safari */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2em;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05em;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: var(--accent-gold);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5); /* Darken image */
    z-index: -1;
}

.parallax-bg {
    background-attachment: fixed; /* For parallax effect */
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.4em;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* About Section */
.about-section {
    background-color: var(--primary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
    color: #555;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    border-radius: 8px;
    display: block;
    width: 100%;
    height: auto;
}

/* Offerings Section */
.offerings-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #1A1A1A 100%);
    color: var(--text-light);
}

.offerings-section .section-title {
    color: var(--text-light);
}

.offerings-section .section-title::after {
    background-color: var(--accent-teal);
}

.offerings-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.offering-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to top */
    align-items: center;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.offering-card img {
    width: 100%; /* Make images take full width of card */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offering-card h3 {
    font-size: 1.6em;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.offering-card p {
    font-size: 1em;
    color: #666;
    flex-grow: 1; /* Allows paragraph to take available space */
}

/* Vision Section */
.vision-section {
    background-color: var(--primary-bg);
    padding: 100px 0;
    text-align: center;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.vision-item {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid var(--accent-teal);
}

.vision-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-gold);
}

.vision-item h3 {
    color: var(--accent-teal);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.vision-item p {
    color: #555;
    font-size: 1.05em;
}

/* Showcase Section (Highlights) */
.showcase-section {
    background-color: var(--secondary-bg);
    color: var(--text-light);
}

.showcase-section .section-title {
    color: var(--text-light);
}

.showcase-section .section-title::after {
    background-color: var(--accent-gold);
}

.showcase-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.highlight-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.highlight-card img {
    width: 100%;
    height: 250px; /* Fixed height for showcase images */
    object-fit: cover;
    display: block;
}

.highlight-card h3 {
    font-size: 1.7em;
    color: var(--accent-teal);
    margin: 20px 25px 10px;
}

.highlight-card p {
    font-size: 1.05em;
    color: #666;
    margin: 0 25px 25px;
}

/* CTA Placeholder Section */
.cta-placeholder-section {
    background: linear-gradient(to right, #ececec, #f7f7f7);
    text-align: center;
    padding: 100px 0;
}

.cta-placeholder-section h2 {
    font-size: 3.5em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-placeholder-section p {
    font-size: 1.3em;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.accent-text {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Individual element animations within sections */
.fade-in-up {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-bottom {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    opacity: 1;
    transform: translateX(-20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 1;
    transform: translateX(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible .fade-in-up,
.scroll-reveal.visible .fade-in-bottom,
.scroll-reveal.visible .fade-in-left,
.scroll-reveal.visible .fade-in-right {
    opacity: 1;
    transform: translate(0,0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 3.8em; }
    h2 { font-size: 2.5em; }
    h3 { font-size: 1.6em; }

    .nav-links li {
        margin-left: 25px;
    }

    .about-grid,
    .offerings-grid,
    .vision-points,
    .highlights-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }

    .navbar {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.8em;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Below the header */
        left: 0;
        background-color: var(--header-bg);
        box-shadow: 0 8px 15px var(--shadow-medium);
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-links.active {
        display: flex; /* Show menu */
        max-height: 300px; /* Arbitrary large height to reveal content */
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links a {
        color: var(--text-light);
        font-size: 1.1em;
        padding: 10px 0;
        display: block;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .section-title {
        font-size: 2.2em;
    }

    .section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }

    .offerings-grid,
    .vision-points,
    .highlights-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
    }

    .cta-placeholder-section h2 {
        font-size: 2.5em;
    }

    .cta-placeholder-section p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.4em; }

    .logo {
        font-size: 1.6em;
    }

    .section-title {
        font-size: 1.8em;
    }

    section {
        padding: 60px 0;
    }

    .hero-content p {
        font-size: 1em;
    }
    
    .offering-card, .highlight-card {
        padding: 20px;
    }

    .offering-card img, .highlight-card img {
        height: 180px;
    }
    .highlight-card h3, .offering-card h3 {
        margin: 15px 0 10px;
    }
    .highlight-card p, .offering-card p {
        margin: 0;
    }
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
