/* Figma Design System - Exact CSS Implementation */
:root {
    --color-primary: #000000/*#576250*/;
    --color-secondary: #90998B;
    --color-light: #B8C1B2;
    --color-white: #FFFFFF;
    --color-light-gray: #FAFAFA;
    --color-medium-gray: #D9D9D9;
    --color-dark-gray: #8D8D8D;
    --color-black: #424242;

    --font-boska: 'Boska', serif;
    --font-switzer: 'Switzer', sans-serif;
    --font-sketchnote: 'sketchnote-text', sans-serif;

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.15);

    --radius: 8px;
    --radius-lg: 12px;
}

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

html, body {
    width: 100%;
    font-family: var(--font-sketchnote);
    color: var(--color-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Ensure text is readable on mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Prevent text size adjustment on iOS */
    html {
        -webkit-text-size-adjust: 100%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 904px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    background-color: var(--color-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 35%);
    z-index: 1;
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 100%;
    height: auto;
    z-index: 100;
    pointer-events: none;
}

.hero-curve img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 50px;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Touch-friendly tap targets for mobile */
@media (max-width: 768px) {
    a, button, .memory-card, .attendance-card, .carousel-indicator {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better tap targets for navigation */
    .nav-bar a {
        padding: 12px 16px;
    }
    
    /* Improve button sizes */
    .btn-confirm-presence,
    .btn-whatsapp,
    .btn-submit,
    .btn-home {
        min-height: 48px;
        padding: 14px 24px;
    }
}

/* Countdown Section */
.countdown-section {
    padding: 80px 60px;
    background-color: var(--color-white);
    position: relative;
    z-index: 110;
}

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

@media (max-width: 768px) {
    .countdown-section {
        padding: 60px 20px;
    }

    .countdown-title {
        font-size: 32px !important;
    }

    .countdown-timer {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .time-unit {
        min-width: 70px;
    }

    .time-value {
        font-size: 36px !important;
    }

    .time-label {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .countdown-section {
        padding: 40px 16px;
    }

    .countdown-title {
        font-size: 24px !important;
    }

    .time-unit {
        min-width: 60px;
    }

    .time-value {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .countdown-section {
        padding: 60px 20px;
    }

    .countdown-title {
        font-size: 32px !important;
    }

    .countdown-timer {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .time-unit {
        min-width: 70px;
    }

    .time-value {
        font-size: 36px !important;
    }

    .time-label {
        font-size: 12px !important;
    }
}

.countdown-title {
    font-family: 'Homemade Apple', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin: 0 0 60px 0;
}

@media (max-width: 768px) {
    .countdown-title {
        font-size: 32px !important;
        margin: 0 0 40px 0 !important;
    }
}

@media (max-width: 480px) {
    .countdown-title {
        font-size: 24px !important;
        margin: 0 0 32px 0 !important;
    }
}

.countdown-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .countdown-grid {
        gap: 16px;
    }

    .countdown-number {
        font-size: 48px !important;
        min-width: 65px !important;
        padding: 12px !important;
        letter-spacing: -1px !important;
    }

    .countdown-label {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .countdown-grid {
        gap: 8px;
    }

    .countdown-number {
        font-size: 36px !important;
        min-width: 50px !important;
        padding: 8px !important;
        letter-spacing: 0 !important;
    }

    .countdown-label {
        font-size: 11px !important;
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-number {
    font-family: var(--font-sketchnote);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-primary);
    text-align: center;
    min-width: 90px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    letter-spacing: -2px;
    transition: all 0.3s ease;
}

.countdown-number.flicker {
    animation: flicker 0.6s ease-in-out;
}

@keyframes flicker {
    0% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.7; transform: scale(0.95) rotateX(90deg); }
    50% { opacity: 0.4; transform: scale(0.9) rotateX(180deg); }
    75% { opacity: 0.7; transform: scale(0.95) rotateX(270deg); }
    100% { opacity: 1; transform: scale(1) rotateX(360deg); }
}

.countdown-label {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}


.hero-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.logo img {
    height: 48px;
    width: 72px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    height: 36px;
    z-index: 150;
}

.hamburger a.main-nav-toggle {
    display: block;
    width: 44px;
    height: 36px;
    position: relative;
    cursor: pointer;
    border-radius: 999px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    padding: 0;
}

.hamburger a.main-nav-toggle:after,
.hamburger a.main-nav-toggle:before {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    height: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.hamburger a.main-nav-toggle:before {
    top: 10px;
}

.hamburger a.main-nav-toggle:after {
    bottom: 10px;
}

.hamburger a.main-nav-toggle i {
    display: block;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.0);
}

.hamburger a.main-nav-toggle:hover,
.hamburger a.main-nav-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.65);
    background-color: rgba(0, 0, 0, 0.0);
    outline: none;
}

.hamburger a.main-nav-toggle.active-menu:before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger a.main-nav-toggle.active-menu:after {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.hamburger a.main-nav-toggle.active-menu i {
    opacity: 0;
    transform: translateY(-50%) scaleX(0.2);
}

.nav-bar {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}

.nav-bar a {
    font-family: var(--font-sketchnote);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-bar a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    font-family: var(--font-sketchnote);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.lang-btn.active {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.social-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

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

.hero-content {
    position: relative;
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 32px;
    padding: 80px 60px 0;
    color: var(--color-white);
}

.section-header h1 {
    font-family: var(--font-boska);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.12px;
    line-height: 66px;
    color: var(--color-white);
    max-width: 600px;
    margin: 0 auto 16px;
    text-align: center;
}

.section-header p {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.handwritten-text {
    font-family: 'Homemade Apple', cursive !important;
    font-size: 24px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.button-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.button-scroll.hidden {
    opacity: 0;
    visibility: hidden;
}

.button-scroll span {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}

.scroll-icon {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Event Details Section */
.event-details {
    padding: 20px 60px;
    background-color: var(--color-white);
    position: relative;
    z-index: 110;
}

/*.event-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-image: url('../icons/stroke.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}*/

.event-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.event-photo {
    position: relative;
    overflow: visible;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 80px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    width: fit-content;
    margin: 0 auto;
}

.carousel {
    position: relative;
    width: 100%;
    height: auto;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: none;
    border-radius: 2px;
    transition: opacity 0.5s ease;
}

.carousel-image.active {
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.carousel-indicator:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-info h2 {
    font-family: var(--font-sketchnote);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
}

.event-info-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-family: var(--font-sketchnote);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark-gray);
    margin: 0;
}

.info-value {
    font-family: var(--font-sketchnote);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

.info-time,
.info-location {
    font-family: var(--font-sketchnote);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark-gray);
    margin: 0;
}

.btn-confirm-presence {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-sketchnote);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}

.btn-confirm-presence:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-confirm-presence svg {
    transition: transform 0.3s ease;
}

.btn-confirm-presence:hover svg {
    transform: translateX(4px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #25D366;
    color: var(--color-white);
    font-family: var(--font-sketchnote);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp svg {
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover svg {
    transform: scale(1.1);
}

/* Responsive Event Details */
@media (max-width: 768px) {
    .event-details {
        padding: 60px 20px;
    }
    
    .event-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-photo {
        padding-top: 12px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 60px;
        max-width: calc(100% - 40px);
        width: auto;
    }

    .carousel-image {
        max-height: 400px;
    }

    .carousel-controls {
        bottom: 16px;
    }

    .carousel-indicator {
        width: 6px;
        height: 6px;
    }

    .carousel-indicator.active {
        width: 18px;
    }
    
    .event-info h2 {
        font-size: 32px;
        text-align: center;
    }

    .event-info-content {
        gap: 24px;
    }
    
    .info-value {
        font-size: 18px;
    }

    .info-time,
    .info-location {
        font-size: 14px;
    }

    .btn-confirm-presence {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .event-details {
        padding: 40px 16px;
    }

    .event-photo {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 50px;
        max-width: calc(100% - 32px);
        width: auto;
    }

    .carousel-image {
        max-height: 320px;
    }

    .carousel-controls {
        bottom: 12px;
    }

    .event-info h2 {
        font-size: 28px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-value {
        font-size: 16px;
    }
}

/* Event Schedule Section */
.event-schedule {
    padding: 100px 60px;
    background-color: var(--color-white);
    position: relative;
    z-index: 110;
}

.schedule-section-title {
    font-family: 'Homemade Apple', cursive;
    font-size: 64px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin: 0 0 80px 0;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 140px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 30px 0;
}

.schedule-icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.schedule-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-number {
    font-family: var(--font-sketchnote);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
}

.date-day {
    font-family: var(--font-sketchnote);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
    text-transform: uppercase;
}

.schedule-divider {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

.schedule-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-title {
    font-family: 'Homemade Apple', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
}

.schedule-location,
.schedule-time {
    font-family: var(--font-sketchnote);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
}

.schedule-dress {
    font-family: var(--font-sketchnote);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 8px 0 0 0;
    text-transform: uppercase;
}

/* Responsive Event Schedule */
@media (max-width: 768px) {
    .event-schedule {
        padding: 60px 20px;
    }

    .schedule-section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding: 32px 20px;
    }
    
    .schedule-icon {
        margin: 0 auto;
        width: 60px;
        height: 60px;
    }

    .schedule-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .schedule-date {
        align-items: center;
    }

    .schedule-day {
        font-size: 14px;
    }

    .schedule-number {
        font-size: 36px;
    }
    
    .schedule-divider {
        display: none;
    }
    
    .schedule-title {
        font-size: 28px;
    }
    
    .schedule-location,
    .schedule-time {
        font-size: 16px;
    }

    .schedule-dress {
        font-size: 14px;
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .event-schedule {
        padding: 40px 16px;
    }

    .schedule-section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .schedule-item {
        padding: 24px 16px;
        gap: 16px;
    }

    .schedule-icon {
        width: 50px;
        height: 50px;
    }

    .schedule-number {
        font-size: 32px;
    }

    .schedule-title {
        font-size: 24px;
    }

    .schedule-location,
    .schedule-time {
        font-size: 14px;
    }

    .schedule-dress {
        font-size: 12px;
        padding: 24px 16px;
    }
}
    }
}

/* Locations Section */
.locations {
    padding: 80px 60px;
    background-color: var(--color-white);
    position: relative;
    z-index: 111;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: 'Homemade Apple', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-align: center;
}

.section-header p {
    font-family: var(--font-sketchnote);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-primary);
    text-align: center;
}

.memory-cards {
    display: flex;
    gap: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.memory-cards::before,
.memory-cards::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.memory-cards::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.memory-cards::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

.memory-cards-track {
    display: flex;
    gap: 16px;
    animation: scroll 40s linear infinite;
}

.memory-cards:hover .memory-cards-track {
    animation-play-state: paused;
}

.memory-card {
    position: relative;
    height: 280px;
    width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.memory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.memory-card:hover::before {
    opacity: 1;
}

.memory-card:hover {
    transform: translateY(-4px);
}

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

.memory-card:hover img {
    transform: scale(1.1);
}

.memory-card p {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.memory-card::after {
    content: attr(data-description);
    position: absolute;
    bottom: 50px;
    left: 16px;
    right: 16px;
    font-family: var(--font-switzer);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.memory-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.memory-card:hover p {
    font-size: 20px;
    font-weight: 600;
}

.memory-card.browse-more {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #F5F5F5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.memory-card.browse-more::before,
.memory-card.browse-more::after {
    display: none;
}

.memory-card.browse-more p {
    position: static;
    text-shadow: none;
    color: var(--color-primary);
    text-align: center;
}
}

.browse-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

/* Featured Venues Section */
.featured-venues {
    padding: 80px 60px;
    background-color: var(--color-white);
}

.section-subheader {
    margin-bottom: 48px;
    text-align: center;
}

.section-subheader h3 {
    font-family: 'Homemade Apple', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--color-primary);
}

.featured-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.featured-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.featured-header {
    display: flex;
    gap: 32px;
}

.current-page {
    flex-shrink: 0;
}

.page-number {
    font-family: var(--font-sketchnote);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.featured-content-text {
    flex: 1;
}

.content-header h4 {
    font-family: var(--font-sketchnote);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 4px;
}

.content-header p {
    font-family: var(--font-sketchnote);
    font-size: 14px;
    color: var(--color-dark-gray);
}

.content-text {
    margin-top: 16px;
}

.content-text p {
    font-family: var(--font-sketchnote);
    font-size: 14px;
    line-height: 22px;
    color: var(--color-black);
    margin-bottom: 12px;
}

.view-more {
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
}

.featured-pager {
    display: flex;
    gap: 12px;
}

.pager-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--radius);
    background-color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pager-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.pager-btn img {
    width: 20px;
    height: 20px;
}

.nav-btn-prev, .nav-btn-next {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn-prev:hover, .nav-btn-next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.nav-btn-prev img, .nav-btn-next img {
    width: 24px;
    height: 24px;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-container .section-header h2 {
    color: var(--color-white);
}

.testimonial-container .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-text {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.quote {
    font-family: var(--font-boska);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 8px;
}

.testimonial-message p {
    font-family: var(--font-switzer);
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.customer-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.customer-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-card p {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

/* Footer Section */
.footer {
    padding: 48px 60px;
    background-color: var(--color-black);
    color: var(--color-white);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-navbar {
        padding: 24px 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero {
        height: 700px;
    }

    .locations, .featured-venues, .services, .portfolios, .testimonials, .contact-us, .footer {
        padding: 60px 40px;
    }

    .location-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-cards {
        grid-template-columns: 1fr;
    }

    .contact-us {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-bar {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-navbar {
        padding: 16px 20px;
        justify-content: space-between;
    }

    .hamburger {
        display: inline-block !important;
    }

    .nav-bar {
        position: fixed !important;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
        backdrop-filter: blur(15px);
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 32px 32px;
        gap: 8px;
        transition: right 0.4s ease-in-out;
        overflow-y: auto;
        z-index: 140;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-bar.active {
        right: 0 !important;
    }

    .nav-bar a {
        width: 100%;
        padding: 16px 12px;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        transform: translateX(0);
        opacity: 1;
    }

    .nav-bar a:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 20px;
        border-left: 3px solid var(--color-white);
    }

    .nav-bar.active a {
        animation: slideInRight 0.4s ease forwards;
    }

    .nav-bar.active a:nth-child(1) { animation-delay: 0.1s; }
    .nav-bar.active a:nth-child(2) { animation-delay: 0.15s; }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .language-switcher {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 20px;
        margin-top: 12px;
        justify-content: flex-start;
    }

    .hero {
        height: 100vh;
        min-height: 700px;
    }

    .hero-bg {
        background-attachment: scroll;
        background-size: auto 120%;
        background-position: 70% center;
        background-image: url('../images/mobile_bg..png') !important;
    }

    .hero-content {
        padding: 180px 20px 0;
        gap: 28px;
        justify-content: flex-start;
    }

    .hero-content .section-header h1 img {
        max-width: 280px;
        margin-top: 60px;
    }

    .handwritten-text {
        font-size: 18px;
        margin-top: 24px;
    }

    .section-header h1 {
        font-size: 32px;
        letter-spacing: -0.64px;
    }

    .section-header h2, .section-subheader h3 {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .locations, .featured-venues, .services, .portfolios, .testimonials, .contact-us, .footer {
        padding: 40px 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 16px;
    }

    .location-cards {
        grid-template-columns: 1fr;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .location-cards::before,
    .location-cards::after {
        display: none;
    }

    .location-card {
        width: 100%;
        height: 240px;
    }

    .location-venue-name {
        font-size: 24px;
    }

    .location-address,
    .location-phone,
    .location-email {
        font-size: 14px;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    iframe {
        height: 300px;
    }

    .location-venue-details {
        padding: 32px 20px;
    }

    .featured-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-image {
        height: 300px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
    }

    .nav-btn-prev, .nav-btn-next {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-bg {
        background-attachment: scroll;
        background-size: auto 120%;
        background-position: 50% center;
        background-image: url('../images/mobile_bg.png') !important;
    }

    .hero-content {
        padding: 150px 16px 0;
        gap: 24px;
        justify-content: flex-start;
    }

    .hero-content .section-header h1 img {
        max-width: 240px;
        margin-top: 50px;
    }

    .handwritten-text {
        font-size: 16px;
        margin-top: 20px;
    }

    .button-scroll {
        gap: 8px;
    }

    .button-scroll span {
        font-size: 12px;
    }

    .section-header h1 {
        font-size: 24px;
    }

    .section-header h2, .section-subheader h3 {
        font-size: 20px;
    }

    .locations, .featured-venues, .services, .portfolios, .testimonials, .contact-us, .footer {
        padding: 32px 16px;
    }

    .event-info h2 {
        font-size: 24px;
    }

    .location-cards {
        gap: 12px;
    }

    .location-card {
        height: 200px;
    }

    .btn-whatsapp,
    .btn-confirm-presence {
        padding: 12px 20px;
        font-size: 16px;
    }

    iframe {
        height: 250px;
    }

    .social-buttons {
        gap: 8px;
    }

    .nav-bar {
        display: none;
    }

    .hero-navbar .logo {
        width: 40px;
        height: 30px;
    }
}
