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

:root {
    --primary-color: #d4af37;
    --secondary-color: #faf8f5;
    --text-color: #000000;
    --text-light: #333333;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.3);
    --cream: #faf8f3;
    --champagne: #f5f1e8;
    --warm-beige: #ede8e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 70px;
}

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

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
    background-image: url('assets/ALBUM/BIA TAP CHI 20x30.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 248, 243, 0.85) 0%, rgba(245, 241, 232, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-color);
    animation: fadeInUp 1s ease-out;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 10px 0;
    text-shadow: none;
}

.hero-ampersand {
    font-size: 3rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 20px 0;
    font-weight: 300;
    text-shadow: none;
}

.hero-date {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-top: 30px;
    font-weight: 300;
    text-shadow: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 25px;
    opacity: 0.7;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--text-color);
    border-radius: 2px;
    margin: 8px auto;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Story Section */
.story {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.story-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.gallery-section .container {
    width: 100%;
}

/* Gallery Header */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-header .section-title {
    margin-bottom: 0;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 40px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.gallery-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a030 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.gallery-tab:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-tab:hover::before {
    left: 0;
}

.gallery-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a030 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-tab.active::before {
    left: 0;
}

/* Gallery Content */
.gallery-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.gallery-content.active {
    display: block;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    min-height: calc(2 * (min(33vw, 300px) * 9 / 16) + 15px);
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery.fade-out {
    opacity: 0;
}

.gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    min-height: 50px;
}

.pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a030 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a030 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    width: 100%;
}

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

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(250, 248, 243, 0.8) 50%, rgba(212, 175, 55, 0.05) 100%);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.location-section .container {
    width: 100%;
}

.location-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.location-section .section-title::after {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c9a030 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.location-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.location-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-map-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-label::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
}

.location-info-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    z-index: 1;
}

.location-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c9a030 100%);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.location-info-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2), 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.location-info-card:hover::after {
    opacity: 1;
}

.info-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-section:last-of-type {
    margin-bottom: 0;
}

.info-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 160, 48, 0.15) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.location-info-card:hover .info-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(201, 160, 48, 0.25) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.info-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.info-date {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.info-time {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.info-address {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.info-detail {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 4px 0;
}

.info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    margin: 30px 0;
}

.location-map-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: var(--white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.location-map:hover {
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

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

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: opacity 0.3s ease;
    user-select: none;
    z-index: 1001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .location-section {
        padding: 50px 0;
    }

    .location-main-content {
        gap: 30px;
    }

    .location-info-card {
        padding: 35px 30px;
    }

    .location-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

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

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin: 8px 0;
    }

    .hero-ampersand {
        font-size: 1.8rem;
        margin: 15px 0;
    }

    .hero-date {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .story {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .story-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .gallery-section {
        padding: 30px 0;
        min-height: auto;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        gap: 15px;
    }

    .gallery-tabs {
        gap: 12px;
        width: 100%;
        justify-content: flex-start;
    }

    .gallery-tab {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 15px;
        min-height: calc(2 * (min(48vw, 250px) * 9 / 16) + 12px);
    }

    .pagination {
        gap: 6px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .pagination-btn {
        min-width: 35px;
        height: 35px;
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .location-section {
        padding: 60px 0;
        min-height: auto;
    }

    .location-section .section-title {
        font-size: 2.2rem;
    }

    .location-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .location-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .location-info-stack {
        gap: 15px;
    }

    .location-map-stack {
        gap: 15px;
    }

    .map-label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .location-info-card {
        padding: 30px 25px;
    }

    .info-section {
        gap: 15px;
        margin-bottom: 25px;
    }

    .info-icon-wrapper {
        width: 50px;
        height: 50px;
    }

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

    .info-label {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .info-date {
        font-size: 1.1rem;
    }

    .info-time {
        font-size: 1rem;
    }

    .info-address {
        font-size: 1.1rem;
    }

    .info-detail {
        font-size: 0.95rem;
    }

    .info-divider {
        margin: 25px 0;
    }

    .location-map {
        min-height: 300px;
    }

    .lightbox-prev {
        left: 10px;
        font-size: 35px;
        padding: 15px;
    }

    .lightbox-next {
        right: 10px;
        font-size: 35px;
        padding: 15px;
    }

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

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

@media (max-width: 480px) {
    .nav-logo {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

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

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

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

    .story-text {
        font-size: 0.95rem;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
        gap: 12px;
    }

    .gallery-tabs {
        gap: 10px;
        width: 100%;
    }

    .gallery-tab {
        padding: 8px 20px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 10px;
        min-height: calc(2 * (min(48vw, 200px) * 9 / 16) + 10px);
    }

    .pagination {
        gap: 6px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .pagination-btn {
        min-width: 32px;
        height: 32px;
        padding: 0 10px;
        font-size: 0.85rem;
    }

    .location-section {
        padding: 50px 0;
    }

    .location-section .section-title {
        font-size: 1.8rem;
    }

    .location-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .location-main-content {
        gap: 20px;
        padding: 0 10px;
    }

    .location-info-card {
        padding: 25px 20px;
    }

    .info-section {
        gap: 12px;
        margin-bottom: 20px;
    }

    .info-icon-wrapper {
        width: 45px;
        height: 45px;
    }

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

    .info-label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .info-date {
        font-size: 1rem;
    }

    .info-time {
        font-size: 0.95rem;
    }

    .info-address {
        font-size: 1rem;
    }

    .info-detail {
        font-size: 0.9rem;
    }

    .info-divider {
        margin: 20px 0;
    }

    .location-map {
        min-height: 250px;
    }

    .container {
        padding: 0 15px;
    }
}
