/* Reset & Base Styles */
:root {
    --color-black: #01452c;
    --color-dark-gray: #002b1b;
    --color-gold: #FEF0CB;
    /* Cream/Beige */
    --color-gold-light: #F4B8A8;
    --color-white: #ffffff;
    --color-text-gray: #e6e6e6;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.text-gold {
    color: var(--color-gold);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 1rem;
}

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

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

p {
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Header & Nav */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(1, 69, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(254, 240, 203, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.nav-links .btn-primary {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-gray);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 2px 5px;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--color-gold);
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(rgba(1, 69, 44, 0.85), rgba(1, 69, 44, 0.85)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    z-index: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 80%;
    filter: drop-shadow(0 0 20px rgba(254, 240, 203, 0.2));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections General */
.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.underline {
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 10px auto 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.about-card h3 {
    margin-bottom: 15px;
    color: var(--color-gold);
}

/* Gallery/Activities */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    background-color: #333;
    /* Placeholder for image */
    background-image: linear-gradient(45deg, #222 25%, #333 25%, #333 50%, #222 50%, #222 75%, #333 75%, #333 100%);
    background-size: 20px 20px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--color-gold);
}

.gallery-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-white);
}

/* Events Section */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 30px;
    background: var(--color-dark-gray);
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
}

.event-card:hover {
    background: #252525;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: rgba(254, 240, 203, 0.1);
    border-radius: 4px;
    color: var(--color-gold);
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-time {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.text-link {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.text-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.bg-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.bg-gold h2,
.bg-gold p,
.bg-gold strong,
.bg-gold li {
    color: var(--color-black);
}

.bg-gold .underline {
    background-color: var(--color-black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-info {
    padding: 50px;
    background: var(--color-black);
    color: var(--color-white);
}

.contact-info h2 {
    color: var(--color-gold);
}

.contact-info p {
    color: var(--color-text-gray);
}

.contact-details {
    margin: 30px 0;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
}

.contact-details li strong {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.contact-form {
    padding: 50px;
    background: var(--color-white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn-submit {
    background-color: var(--color-black);
    color: var(--color-gold);
    width: 100%;
    border: none;
}

.btn-submit:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
}

/* Footer */
footer {
    background-color: #000;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
}

.footer-logo img {
    height: 30px;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--color-text-gray);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-black);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-date {
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 10px;
        gap: 10px;
        justify-content: flex-start;
    }
}
/* New About Section Styles */
.about-intro {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.goals-vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.goals-column h3, .vision-column h3 {
    margin-bottom: 25px;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(254, 240, 203, 0.2);
    padding-bottom: 10px;
    display: inline-block;
}

.goals-list {
    list-style: none;
}

.goals-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: var(--color-text-gray);
}

.goals-list li .list-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: -2px;
}

.vision-column {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-column h3 {
    margin-top: 0;
}

@media (max-width: 968px) {
    .goals-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-column {
        margin-top: 20px;
    }
}
