:root {
    --primary: #79b233;
    --secondary: #357656;
    --light-green: #b3d391;
    --dark: #222;
    --light: #f8f9fa;
    --gray: #6c757d;
}

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

body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.7;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #000000);
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    z-index: 1;
    position: relative;
}

.logo-container {
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 4px white) drop-shadow(0 0 10px white) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: pulse-glow 7s ease-in-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-date {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

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

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 4px white);
    }

    50% {
        filter: drop-shadow(0 0 6px white) drop-shadow(0 0 14px white) drop-shadow(0 0 28px rgba(255, 255, 255, 0.6));
    }

    100% {
        filter: drop-shadow(0 0 4px white) drop-shadow(0 0 10px white) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
}

.about {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.about:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 480px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--light-green);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.fb-event {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.fb-event:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #f8f9fa;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

.fb-event-container {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fb-event-placeholder {
    background-color: white;
    padding: 40px;
    text-align: center;
    border: 2px dashed var(--secondary);
    border-radius: 10px;
}

.footer {
    padding: 50px 0;
    background-color: var(--dark);
    color: white;
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    margin: 20px 0;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
    color: white;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-leaf {
    position: absolute;
    z-index: -1;
    opacity: 0.3;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-30deg);
}

.leaf-2 {
    bottom: 20%;
    right: 5%;
    transform: rotate(45deg);
}

.leaf-3 {
    bottom: 40%;
    left: 10%;
    transform: rotate(15deg);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 90%;
    }

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

    .hero-date {
        font-size: 1.5rem;
    }

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

    .logo-container {
        max-width: 250px;
        margin-bottom: 20px;
    }

    .countdown {
        gap: 10px;
        margin: 25px 0;
    }

    .countdown-item {
        min-width: 65px;
        padding: 8px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .glass-card {
        padding: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

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

    .hero-date {
        font-size: 1.2rem;
    }

    .hero-location {
        font-size: 1rem;
    }

    .logo-container {
        max-width: 200px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 8px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 5px;
    }

    .countdown-value {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

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

    .hero-scroll {
        bottom: 15px;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 10px;
    min-width: 80px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.patronage {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.patronage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 500px));
    gap: 30px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.patron-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.patron-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--light-green);
}

.patron-logo {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patron-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.patron-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.patron-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.media-patronage {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 500px));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.media-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--light-green);
}

.media-logo {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.media-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.media-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .patronage-grid,
    .media-grid,
    .exhibition-grid {
        grid-template-columns: 1fr;
    }
}

.exhibition {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.exhibition-content {
    margin-top: 40px;
}

.exhibition-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.exhibitor-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.exhibitor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--light-green);
}

.exhibitor-logo {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.exhibitor-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.exhibitor-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.exhibitor-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.fb-event-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: stretch;
}
/* 
@media (min-width: 992px) {
    .fb-event-content {
        grid-template-columns: 1fr 1fr;
    }
} */

.fb-event-info {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.fb-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.fb-icon2 {
    width: 80px;
    height: 80px;
    background: rgba(219, 238, 228, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.fb-icon2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    flex-shrink: 0;
}

.fb-icon i {
    font-size: 40px;
    color: white;
}

.fb-event-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.fb-event-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    flex-grow: 1;
}

.fb-event-info .event-link-footer {
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
    flex-shrink: 0;
}

.fb-btn {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.fb-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fb-event-preview {
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.event-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.event-link-container>i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    flex-shrink: 0;
}

.event-link-container>h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    flex-shrink: 0;
}

.event-link-container>p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
    width: 100%;
}

.event-link-container .event-link-footer {
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
    border-top: none;
    flex-shrink: 0;
}

.event-link-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.event-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.event-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.95rem;
}

.event-stat i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .event-link-container {
        padding: 30px;
    }

    .event-link-header h3 {
        font-size: 1.5rem;
    }

    .event-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.map-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.map-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 450px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}

.exhibition:before,
.patronage:before,
.media-patronage:before,
.fb-event:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 0;
}

.exhibition:before {
    background-color: #f8f9fa;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

.patronage:before {
    background-color: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.media-patronage:before {
    background-color: #f8f9fa;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

.fb-event:before {
    background-color: #f8f9fa;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-nav .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.top-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
}

.top-nav a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.top-nav a.active {
    color: var(--light-green);
    border-bottom-color: var(--light-green);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1010;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(34, 34, 34, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s ease-in-out;
        padding: 60px 20px 20px 20px;
        z-index: 1005;
    }

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

    .top-nav a {
        font-size: 1.3rem;
        color: #f0f0f0;
        padding-bottom: 10px;
    }

    .top-nav a:hover,
    .top-nav a.active {
        color: var(--light-green);
        border-bottom-color: var(--light-green);
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .top-nav.mobile-nav-active {}
}

@media (max-width: 480px) {
    .top-nav {
        padding: 10px 0;
    }
}

.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #f8f9fa;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.contact-content {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content p {
    margin-bottom: 20px;
}

.contact-email {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    font-size: 1.2rem;
}

.contact-email:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.contact-details-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0;
}

.contact-icon-large {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-details-card h4 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-details-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 1rem;
}

.contact-btn i {
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.gallery-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #f8f9fa;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    margin-top: -30px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 200px;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--hidden {
    display: none;
}

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

.gallery-item.visible:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Placeholder styles for when images aren't ready */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary) 50%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -70%);
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 0 auto;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.load-more-btn.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: white;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-auto-rows: 180px;
        gap: 15px;
    }

    .gallery-section {
        padding: 80px 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px 12px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .load-more-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px 12px;
        font-size: 24px;
        z-index: 2002;
        background: rgba(0, 0, 0, 0.6);
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-image {
        max-width: 85%;
    }
}