/*
Theme Name: Maison de l'amour
Theme URI: https://maisondelamour.kr
Author: Maison de l'amour
Author URI: https://maisondelamour.kr
Description: Elegant wedding hall theme for Maison de l'amour
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maisondelamour
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

body {
    font-family: 'Noto Serif KR', 'Noto Sans KR', Georgia, serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
    overflow-y: auto !important;
}

/* 모바일 메뉴 열림 상태에서 스크롤 방지 */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* 라이트박스 열림 상태에서 스크롤 방지 */
body.lightbox-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Noto Serif KR', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

/* Colors - 2025 Soft & Comfortable */
:root {
    --primary-color: #c9b8a8;      /* Soft Taupe */
    --primary-dark: #b8a696;       /* Medium Taupe */
    --secondary-color: #f9f7f4;    /* Warm White */
    --accent-color: #e8ddd0;       /* Soft Beige */
    --accent-light: #f3ede5;       /* Light Beige */
    --sage: #d5ddd5;               /* Soft Sage */
    --dusty-blue: #d0dade;         /* Soft Blue */
    --text-color: #4a4a4a;         /* Comfortable Dark Gray */
    --text-light: #888888;         /* Medium Gray */
    --bg-light: #fdfcfa;           /* Warm Off White */
    --bg-dark: #f2efe9;            /* Warm Light Gray */
    --white: #ffffff;
    --black: #3a3a3a;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: var(--primary-color);
}

.site-header.scrolled .nav-link,
.site-header.scrolled .site-title a {
    color: var(--white);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

.site-title a {
    color: var(--primary-color);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

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

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background-color: var(--white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Section Common */
.section {
    padding: 100px 0;
}

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

.section-title {
    font-family: 'Playfair Display', 'Noto Serif KR', Georgia, serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Hall Section */
.hall-section {
    background-color: var(--bg-light);
}

.hall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hall-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hall-card:hover {
    transform: translateY(-10px);
}

.hall-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hall-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.hall-card-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.hall-card-desc {
    font-size: 13px;
    opacity: 0.8;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 55, 43, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-overlay i {
    color: var(--white);
    font-size: 30px;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.contact-info-item i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-map {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--bg-light);
    }

    .menu-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .hall-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-social {
        justify-content: center;
    }
}

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

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

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active,
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Reservation Section */
.reservation-section {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-color) 100%);
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.reservation-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reservation-info p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.reservation-contact {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.reservation-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.reservation-contact strong {
    color: var(--primary-color);
}

/* Reservation Form */
.reservation-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--bg-dark);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 169, 201, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Content Area (for blog/pages) */
.content-area {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.posts-list {
    display: grid;
    gap: 40px;
}

.post-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--bg-dark);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.post-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.post-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    color: var(--primary-dark);
}

.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--bg-light);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination span.current {
    background-color: var(--primary-color);
    color: var(--white);
}

.no-posts {
    text-align: center;
    padding: 60px 0;
}

.no-posts h2 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.no-posts p {
    color: var(--text-light);
}

/* Responsive - Reservation */
@media (max-width: 768px) {
    .reservation-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .post-item {
        grid-template-columns: 1fr;
    }

    .post-thumbnail img {
        height: 250px;
    }
}

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

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* =============================================
   PAGE TEMPLATES - NEW STYLES
   ============================================= */

/* Page Hero */
.page-hero {
    position: relative;
    height: clamp(280px, 40vh, 400px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero-small {
    height: clamp(200px, 30vh, 300px);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-hero-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Page Sections */
.page-section {
    padding: 80px 0;
}

.section-gray {
    background-color: var(--bg-light);
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title-left {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-action {
    text-align: center;
    margin-top: 40px;
}

/* Quick Menu Section */
.quick-menu-section {
    background-color: var(--white);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.quick-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.quick-menu-item {
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-right: 1px solid var(--bg-light);
}

.quick-menu-item:last-child {
    border-right: none;
}

.quick-menu-item:hover {
    background-color: var(--accent-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-menu-item:hover .quick-menu-icon {
    background-color: var(--primary-color);
}

.quick-menu-item:hover .quick-menu-icon i {
    color: var(--white);
}

.quick-menu-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.quick-menu-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.quick-menu-item h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.quick-menu-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* Home About Section */
.home-about {
    padding-top: 120px;
}

.home-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-about-text .lead {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.home-about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.home-about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Hall Preview Grid */
.hall-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hall-preview-single {
    max-width: 900px;
    margin: 0 auto;
}

.hall-preview-single .hall-preview-card.large .hall-preview-image img {
    height: 400px;
}

.hall-preview-card {
    display: block;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hall-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hall-preview-image {
    overflow: hidden;
}

.hall-preview-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hall-preview-card:hover .hall-preview-image img {
    transform: scale(1.1);
}

.hall-preview-content {
    padding: 25px;
    text-align: center;
}

.hall-floor {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.hall-preview-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.hall-preview-content p {
    font-size: 13px;
    color: var(--text-light);
}

/* Gallery Preview Grid */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
}

.gallery-preview-item {
    overflow: hidden;
    border-radius: 5px;
}

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

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

.gallery-preview-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Notice Preview */
.notice-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.notice-preview-list {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.notice-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid var(--bg-light);
    transition: background-color 0.3s ease;
}

.notice-preview-item:last-child {
    border-bottom: none;
}

.notice-preview-item:hover {
    background-color: var(--bg-light);
}

.notice-title {
    font-size: 15px;
    color: var(--text-color);
}

.notice-date {
    font-size: 13px;
    color: var(--text-light);
}

.notice-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-light);
}

/* Contact Preview */
.contact-preview-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

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

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.contact-detail-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-preview-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-preview-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* CTA Section with Background */
.section-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.home-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.section-cta h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Button Variants */
.btn-lg {
    padding: 18px 50px;
    font-size: 15px;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 13px;
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline-dark:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* Nav CTA Button */
.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
}

.nav-cta::after {
    display: none;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-intro-text .lead {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-icon i {
    font-size: 30px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =============================================
   HALL PAGE STYLES
   ============================================= */

.hall-detail {
    padding: 80px 0;
}

.hall-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hall-detail-content.reverse {
    direction: rtl;
}

.hall-detail-content.reverse > * {
    direction: ltr;
}

.hall-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.hall-main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hall-thumb-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hall-thumb-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hall-thumb-images img:hover {
    opacity: 0.8;
}

.hall-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hall-detail-info h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.hall-capacity {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hall-capacity i {
    margin-right: 8px;
}

.hall-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.hall-features {
    margin-bottom: 30px;
}

.hall-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-color);
}

.hall-features li i {
    color: var(--primary-color);
}

/* =============================================
   GALLERY PAGE STYLES
   ============================================= */

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--bg-light);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-masonry .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

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

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

.gallery-masonry .gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-masonry .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}

.gallery-masonry .gallery-item-overlay i {
    color: var(--white);
    font-size: 24px;
}

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

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-map-large {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-large iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    color: var(--white);
    font-size: 20px;
}

.contact-card-content h3 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.transport-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.transport-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.transport-card h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.transport-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   RESERVATION PAGE STYLES
   ============================================= */

.reservation-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.reservation-info-side h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reservation-info-side .lead {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.reservation-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-light);
}

.quick-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.quick-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.phone-number i {
    margin-right: 10px;
}

.working-hours {
    font-size: 13px;
    opacity: 0.9;
}

.reservation-form-side {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.reservation-form-side h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.required {
    color: #e74c3c;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-label.privacy {
    font-size: 13px;
    color: var(--text-light);
}

/* Form Message */
.form-message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =============================================
   NOTICE/BOARD STYLES
   ============================================= */

.notice-board {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.notice-table {
    width: 100%;
    border-collapse: collapse;
}

.notice-table th,
.notice-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.notice-table th {
    background-color: var(--bg-light);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
}

.notice-table td {
    font-size: 14px;
    color: var(--text-color);
}

.col-num {
    width: 80px;
    text-align: center;
}

.col-title {
    width: auto;
}

.col-date {
    width: 120px;
    text-align: center;
}

.col-views {
    width: 80px;
    text-align: center;
}

.notice-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 11px;
    margin-right: 10px;
}

.notice-table .col-title a:hover {
    color: var(--primary-color);
}

.notice-table .col-title i {
    color: var(--text-light);
    margin-left: 8px;
    font-size: 12px;
}

.no-posts {
    padding: 80px 20px;
    text-align: center;
}

.no-posts i {
    font-size: 60px;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.no-posts h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.no-posts p {
    color: var(--text-light);
}

/* Single Post */
.single-post {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.single-post-header {
    padding: 40px;
    border-bottom: 1px solid var(--bg-light);
}

.single-post-title {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.single-post-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.single-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-post-thumbnail {
    padding: 0 40px;
}

.single-post-thumbnail img {
    width: 100%;
    border-radius: 10px;
    margin-top: 40px;
}

.single-post-content {
    padding: 40px;
    line-height: 1.8;
    color: var(--text-color);
}

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

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.single-post-footer {
    padding: 30px 40px;
    background-color: var(--bg-light);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-prev,
.nav-next {
    padding: 20px;
    background: var(--white);
    border-radius: 5px;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.nav-prev a,
.nav-next a {
    font-size: 14px;
    color: var(--text-color);
}

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

.nav-none {
    font-size: 13px;
    color: var(--text-light);
}

.post-actions {
    text-align: center;
}

/* =============================================
   RESPONSIVE STYLES - EXTENDED
   ============================================= */

@media (max-width: 1024px) {
    .quick-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-menu-item {
        border-bottom: 1px solid var(--bg-light);
    }

    .home-about-content,
    .about-intro,
    .hall-detail-content,
    .contact-layout,
    .reservation-layout,
    .contact-preview-content {
        grid-template-columns: 1fr;
    }

    .hall-detail-content.reverse {
        direction: ltr;
    }

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

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

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

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

@media (max-width: 768px) {
    .page-hero {
        margin-top: 60px;
    }

    .page-section {
        padding: 60px 0;
    }

    .quick-menu-section {
        margin-top: -40px;
    }

    .quick-menu-grid {
        grid-template-columns: 1fr;
    }

    .quick-menu-item {
        padding: 25px 20px;
        border-right: none;
    }

    .hall-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    .gallery-preview-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .features-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }

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

    .notice-table th,
    .notice-table td {
        padding: 12px 15px;
    }

    .col-num,
    .col-views {
        display: none;
    }

    .col-date {
        width: 90px;
        font-size: 12px;
    }

    .single-post-header,
    .single-post-content,
    .single-post-thumbnail {
        padding: 25px;
    }

    .single-post-title {
        font-size: 22px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .header-inner {
        height: 60px;
    }

    .site-title {
        font-size: 18px;
    }

    .main-navigation {
        top: 60px;
    }
}
