/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5a4a42;
    text-decoration: none;
}

nav .logo img {
    max-height: 40px; /* 로고 이미지의 최대 높이 지정 */
    vertical-align: middle; /* 이미지를 세로 중앙에 정렬 */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav a:hover {
    color: #c8a07d;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #5a4a42;
    margin: 5px 0;
    transition: 0.4s;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    nav .logo {
        flex-grow: 1;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide menu by default on mobile */
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: absolute;
        top: 70px; /* Below header */
        left: 0;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.is-active {
        display: block; /* Show menu when active */
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }
}

main {
    padding-top: 80px; /* Header height */
}

section {
    padding: 60px 5%;
    text-align: center;
    scroll-margin-top: 80px; /* Fixed header height */
}

section:nth-child(odd) {
    background-color: #fff;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Hero Contact Section */
.hero-contact {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.btn-primary {
    background: #c8a07d;
    border: 2px solid #c8a07d;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: #c8a07d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 160, 125, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #5a4a42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8a07d, #5a4a42);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(200, 160, 125, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(200, 160, 125, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(200, 160, 125, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(200, 160, 125, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(200, 160, 125, 0.4);
    }
}

.floating-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    min-width: 180px;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.floating-item:last-child {
    border-bottom: none;
    border-radius: 0 0 15px 15px;
}

.floating-item:first-child {
    border-radius: 15px 15px 0 0;
}

.floating-item:hover {
    background: #f8f9fa;
    color: #c8a07d;
}

.floating-item .icon {
    margin-right: 10px;
    font-size: 18px;
}

.floating-item .text {
    font-weight: 500;
}

/* Enhanced Contact Section */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-main {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #c8a07d;
    box-shadow: 0 10px 30px rgba(200, 160, 125, 0.2);
}

.contact-method .contact-icon {
    font-size: 3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #5a4a42;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-number,
.contact-email {
    font-size: 1.2rem;
    font-weight: bold;
    color: #c8a07d;
    margin-bottom: 15px;
}

.btn-phone {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3, #520dc2);
    color: white !important;
}

.btn-email {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3, #520dc2);
    color: white !important;
}

.contact-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #c8a07d;
    text-align: left;
}

.contact-note p {
    margin: 8px 0;
    color: #856404;
}

.contact-note strong {
    color: #5a4a42;
}

/* About Section */
#about h2 {
    color: #5a4a42;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.03);
}



/* Rules Section */
.rules-container {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.rules-container h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.rules-container ol,
.rules-container ul {
    padding-left: 20px;
}

.rules-container li {
    margin-bottom: 15px;
}

.final-message {
    margin-top: 30px;
    font-weight: bold;
    color: #c8a07d;
}

/* Location Section */
#map {
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Attractions Section */
.attractions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
    margin-top: 40px;
}

.attraction-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    overflow: hidden;
}

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

.attraction-item:first-child {
    grid-column: 1 / -1;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.attraction-image {
    flex: 0 0 300px;
}

.attraction-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.attraction-image img:hover {
    transform: scale(1.05);
}

.attraction-content {
    flex: 1;
}

.attraction-item h3 {
    color: #5a4a42;
    margin-bottom: 10px;
}

.distance {
    font-size: 0.9rem;
    color: #c8a07d;
    font-weight: normal;
}

.attraction-gallery {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    transform: scale(1.1);
    border-color: #c8a07d;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    color: #c8a07d;
    text-decoration: none;
    font-weight: bold;
}

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

/* Booking Section */
.calendar-container {
    margin-top: 40px;
}

.calendar-container iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Contact Section */
.btn {
    display: inline-block;
    background: #5a4a42;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #c8a07d;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.review-card .rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.review-card .name {
    font-weight: bold;
    color: #5a4a42;
}

.review-card .comment {
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

#reviews .btn {
    margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-main {
        padding: 30px 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .floating-menu {
        right: -10px;
        min-width: 160px;
    }
    
    /* Mobile Attractions */
    .attraction-item:first-child {
        flex-direction: column;
        grid-column: 1;
    }
    
    .attraction-image {
        flex: none;
        width: 100%;
    }
    
    .attraction-gallery {
        justify-content: center;
    }
    
    .gallery-thumb {
        width: 70px;
        height: 50px;
    }

    /* Mobile Album */
    .album-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .album-thumb {
        height: 120px !important;
    }

    .gallery-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .gallery-highlights img {
        height: 150px !important;
    }

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

/* Gallery Page Styles */
.gallery-page {
    background: #f9f9f9;
    min-height: 100vh;
}

.gallery-page h1 {
    color: #5a4a42;
    margin-bottom: 15px;
    padding-top: 40px;
}

.gallery-page > p {
    color: #666;
    margin-bottom: 40px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #5a4a42;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.back-link:hover {
    color: #c8a07d;
}

/* Album Container - 카테고리별 앨범 */
.album-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.album-category {
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-title {
    color: #5a4a42;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c8a07d;
    text-align: left;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.album-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.album-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(200, 160, 125, 0.4);
    z-index: 10;
}

/* Modal Image Styling */
.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-header {
    background: linear-gradient(135deg, #c8a07d, #5a4a42);
    color: white;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    font-weight: bold;
}

