:root {
    /* Colors */
    --c-white: #ffffff;
    --c-bg: #ffffff;      
    --c-text-main: #222222;
    --c-text-light: #555555;
    --c-point: #e2583e;   
    --c-border: #f0f0f0;
    
    /* Typography */
    --f-serif: 'Pretendard', 'Noto Serif KR', 'Playfair Display', serif;
    --f-sans: 'Pretendard', 'Noto Sans KR', 'Inter', sans-serif;

    /* Spacing */
    --header-height: 100px;
    /* 기존 15vw에서 50% 줄어든 7.5vw로 전역 섹션 여백(블록 간격) 설정 */
    --s-section: 7.5vw;
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-sans);
    color: var(--c-text-main);
    background-color: var(--c-bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* Language Switching */
.lang-ko { display: none; }
body.is-translated-ko .lang-ko { display: inline; }
body.is-translated-ko .lang-en { display: none; }

div.lang-ko, p.lang-ko { display: none; }
body.is-translated-ko div.lang-ko, body.is-translated-ko p.lang-ko { display: block; }
body.is-translated-ko div.lang-en, body.is-translated-ko p.lang-en { display: none; }

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

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4vw;
}

.section {
    padding-top: var(--s-section);
    padding-bottom: var(--s-section);
}

.section-title {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.03);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 4vw;
    margin: 0 auto;
    width: 100%;
}

.header-left {
    justify-self: start;
}

.header-center {
    justify-self: center;
}

.header-right {
    justify-self: end;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--c-text-main);
    padding-bottom: 4px;
}

.logo h1 {
    font-family: var(--f-serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--c-text-main);
    line-height: 1;
}

.logo span {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(0.55rem, 0.8vw, 0.65rem);
    color: var(--c-text-light);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
    text-align: right;
}

.nav-list {
    display: flex;
    gap: 2.5vw;
}

.nav-list a {
    font-family: var(--f-sans);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--c-text-main);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-list a:hover {
    color: var(--c-point);
}

.header-icon img {
    height: clamp(35px, 4vw, 45px);
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2.5vw;
}

.lang-text-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 4px;
    font-family: var(--f-sans);
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 700;
    color: var(--c-text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.lang-text-btn:hover {
    color: var(--c-point);
}

.lang-text-btn.active {
    color: var(--c-text-main);
    position: relative;
}

.lang-text-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 4px;
    right: 4px;
    height: 1.5px;
    background-color: var(--c-point);
}

.lang-divider {
    font-size: 0.7rem;
    color: #ddd;
    font-weight: 300;
    user-select: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
    margin-left: 1.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e2583e;
    position: absolute;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:first-child { top: 0; }
.mobile-menu-btn span:last-child { bottom: 0; }

/* Hero Section */


.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15vh;
    padding-bottom: 5vh;
}

.hero-image {
    position: relative;
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image img:first-child {
    position: relative;
}

.hero-image img.active {
    opacity: 1;
    z-index: 2;
}

/* Adjust position of slide 2 (hero-slide1.jpg) to avoid cutting off head */
.hero-image img:nth-child(2) {
    object-position: center 25%;
}

/* Adjust position of slide 5 (hero-slide4.jpg) to center the person */
.hero-image img[src*="hero-slide4.jpg"] {
    object-position: center 30%;
}

.hero-text {
    text-align: center;
    width: 100%;
    padding-top: 2.5rem;
    border-top: 4px solid #a4b33b; 
}

.hero-title {
    font-family: var(--f-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.role-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.role-list li {
    font-family: var(--f-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-text-main);
}

.awards-image {
    margin-top: 4rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.awards-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Featured Book Section */
.featured {
    background-color: #fafafa;
    /* 상하 여백을 기본 패딩(var(--s-section))의 50% 뷰포인트로 축소 */
    padding-top: calc(var(--s-section) * 0.5);
    padding-bottom: calc(var(--s-section) * 0.5);
}

.container-medium {
    max-width: 1100px;
}

.featured-inner {
    display: flex;
    align-items: center;
    gap: 5vw;
    background-color: var(--c-white);
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.featured-image {
    flex: 1;
}

.featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-info {
    flex: 1.1;
    text-align: left;
}

.featured-label {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2583e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.featured-title {
    font-family: var(--f-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--c-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-desc {
    font-family: var(--f-sans);
    font-size: 1rem;
    color: var(--c-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-quote {
    border-left: 2px solid #e2583e;
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.featured-quote p {
    font-family: var(--f-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--c-text-main);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.featured-quote footer {
    font-family: var(--f-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-block;
    background-color: #e2583e;
    color: var(--c-white);
    font-family: var(--f-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c9462e;
    color: var(--c-white);
}

/* Books Gallery Section */
.books-gallery {
    background-color: var(--c-bg);
}

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

.gallery-wrapper {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.gallery-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none; /* IE, Edge */
    scrollbar-width: none; /* Firefox */
}

.gallery-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.gallery-track {
    display: flex;
    gap: 3vw;
    width: max-content;
    padding: 1rem 0 3rem 0; /* Box-shadow clipping 방지용 하단 패딩 확보 */
}

.gallery-group {
    display: flex;
    gap: 3vw;
}

.gallery-item {
    width: clamp(250px, 28vw, 420px);
    flex-shrink: 0;
    text-align: center;
}

.gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.book-image {
    width: 100%;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.book-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid var(--c-border);
}

.gallery-item:hover .book-image {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.book-title {
    font-family: var(--f-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c-text-main);
    margin-top: 1rem;
}

/* Book Detail Title Enhancement */
.book-detail-wrapper .book-title {
    font-family: var(--f-sans) !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

/* Gallery Controls */
.gallery-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    margin-top: 3rem;
}

.gallery-nav {
    background: none;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c-text-light);
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    color: var(--c-point);
    background-color: #f5f5f5;
}

.gallery-action {
    text-align: center;
}

.btn-more {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-white);
    background-color: #e2583e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-more:hover {
    background-color: #d14836;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 88, 62, 0.3);
}

.btn-more:hover {
    background-color: var(--c-point);
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--c-text-light);
    font-family: var(--f-serif);
    line-height: 2;
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: #1a1a1a;
    color: #ffffff;
}

.contact-inner {
    padding: calc(var(--s-section) / 2) 0;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.contact-header {
    flex: 0 0 35%;
}

.contact-header h2 {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #df4b35;
    line-height: 1.2;
    font-weight: 400;
}

.contact-content {
    flex: 1;
    max-width: 600px;
}

.contact-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #cccccc;
    font-family: var(--f-sans);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    color: #ccc;
}

.email-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.email-text {
    font-family: var(--f-sans);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.contact-form input,
.contact-form textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    font-family: var(--f-sans);
    font-size: 1rem;
    padding: 0.4rem 0;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #df4b35;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.btn-submit {
    align-self: flex-start;
    background-color: transparent;
    color: #df4b35;
    border: 1px solid #df4b35;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-family: var(--f-sans);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-submit:hover {
    background-color: #df4b35;
    color: #fff;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--c-border);
}

.footer p {
    font-family: var(--f-sans);
    font-size: 0.8rem;
    color: var(--c-text-light);
    letter-spacing: 0.05em;
}

/* =========================================
   Book Detail Navigation
   ========================================= */
.book-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--c-border);
}

.nav-arrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--c-text-light);
    font-family: var(--f-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    color: var(--c-point);
}

.nav-arrow svg {
    transition: transform 0.3s ease;
}

.nav-arrow.prev:hover svg {
    transform: translateX(-5px);
}

.nav-arrow.next:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .book-navigation {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .nav-arrow.prev { order: 2; }
    .btn-more { order: 1; width: 100%; text-align: center; }
    .nav-arrow.next { order: 3; }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries (Responsive Design) */

/* 1. Tablet (992px 이하) */
@media (max-width: 991px) {
    :root {
        --s-section: 6vw; /* 기존 12vw에서 50%로 축소 */
    }
    
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6vw 4vw;
    }
    
    .featured-inner {
        flex-direction: column;
        padding: 2.5rem;
        gap: 3rem;
    }
    
    .role-list {
        gap: 1.5rem;
    }
    
    .awards-image {
        max-width: 90%;
        margin-top: 3rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

/* 2. Mobile & Tablet (1024px 이하) */
@media (max-width: 1024px) {
    :root {
        --s-section: 2.5rem;
    }

    /* Navigation - Mobile Menu */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--c-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 150;
    }

    .nav.is-active { right: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav-list a { 
        font-size: 1.5rem; 
        padding: 0.5rem 0;
    }
    
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-icon img {
        height: 35px;
    }

    .mobile-menu-btn { 
        display: block; 
        z-index: 200;
        margin-left: 0;
    }

    .mobile-menu-btn.is-active span:first-child { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-btn.is-active span:last-child { transform: translateY(-10px) rotate(-45deg); }
    
    /* Layout */
    .books-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .featured-inner {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .hero {
        padding-top: 20vh;
    }
    
    .hero-image {
        max-height: 50vh;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .role-list {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .role-list li {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .contact-inner {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-inner {
        padding: 1.5rem 0;
    }
    
    .awards-image {
        margin-top: 2.5rem;
        max-width: 95%;
    }
    
    .footer {
        padding: 2rem 0;
    }

    .look-inside-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .look-inside-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Gallery Helper Text */
.gallery-helper-text {
    text-align: center;
    margin-top: 2rem;
    color: var(--c-text-light);
    font-family: var(--f-sans);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* =========================================
   Lightbox Gallery Styles
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.lightbox.show {
    display: flex;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: var(--c-point);
}
.lightbox-content {
    max-width: 85%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 4px;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10000;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}
.lightbox-prev {
    left: 40px;
}
.lightbox-next {
    right: 40px;
}
@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-close { top: 15px; right: 20px; }
    .lightbox-content { max-width: 95%; }
}

/* Language toggle classes */
.lang-ko, .about-ko { display: none !important; }
.lang-en, .about-en { display: inline-block !important; }
.is-translated-ko .lang-ko, .is-translated-ko .about-ko { display: inline-block !important; }
.is-translated-ko .lang-en, .is-translated-ko .about-en { display: none !important; }

/* Language Switcher Flags */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid var(--c-border);
}

.lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    background: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    filter: grayscale(40%);
}

.lang-flag:hover {
    transform: scale(1.15);
    opacity: 1;
    filter: grayscale(0%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.lang-flag.active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: var(--c-accent);
}

.lang-flag svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-right {
        display: flex;
        align-items: center;
    }
    
    .lang-switcher {
        margin-right: 15px;
        padding-right: 0;
        border-right: none;
    }
}

/* Exception for block level elements if we use .lang-block-ko */
.lang-block-ko { display: none !important; }
.lang-block-en { display: block !important; }
.is-translated-ko .lang-block-ko { display: block !important; }
.is-translated-ko .lang-block-en { display: none !important; }

/* Hero Slider Dots */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #d8d8d8;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot:hover {
    background-color: #a0a0a0;
}

.hero-dots .dot.active {
    width: 24px;
    border-radius: 12px;
    background-color: #e2583e;
}

/* =========================================
   Video Modal Styles
   ========================================= */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.video-modal.show {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container.is-shorts {
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    max-width: 500px;
    margin: 0 auto;
}

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

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: var(--c-point);
}

.video-modal-trigger:hover .play-button {
    background: var(--c-point);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Gallery Enhancement Styles */
.gallery-helper-text { text-align: center; margin-top: 2rem; color: var(--c-text-light); font-family: var(--f-sans); font-size: 0.9rem; letter-spacing: 0.02em; }
.lightbox { background-color: rgba(0, 0, 0, 0.95) !important; flex-direction: column !important; backdrop-filter: blur(10px) !important; }
.lightbox-close { font-family: var(--f-sans) !important; font-size: 1rem !important; font-weight: 500 !important; background: rgba(255,255,255,0.1) !important; padding: 0.8rem 1.5rem !important; border-radius: 50px !important; border: 1px solid rgba(255,255,255,0.2) !important; top: 30px !important; right: 40px !important; width: auto !important; height: auto !important; }
.lightbox-close:hover { background: var(--c-point) !important; border-color: var(--c-point) !important; }
.lightbox-content { flex: 1 !important; width: 100% !important; padding: 40px 20px 10px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.lightbox-content img { max-width: 90% !important; max-height: 70vh !important; }
.lightbox-instruction { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; margin: 0.5rem 0 0.5rem; text-align: center; font-weight: 300; letter-spacing: 0.02em; text-shadow: 0 2px 4px rgba(0,0,0,0.5); width: 100%; z-index: 10002; }
.lightbox-controls { width: 100%; display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 20px 0 50px; z-index: 10001; }
.lightbox-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 0.8rem 2rem; border-radius: 50px; cursor: pointer; font-family: var(--f-sans); font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; min-width: 120px; justify-content: center; }
.lightbox-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.lightbox-btn.download-btn { background: var(--c-point); border-color: var(--c-point); min-width: 160px; }
.lightbox-btn.download-btn:hover { background: #c9462e; box-shadow: 0 5px 20px rgba(226, 88, 62, 0.4); }
@media (max-width: 768px) { .lightbox-close { top: 20px !important; right: 20px !important; padding: 0.6rem 1.2rem !important; font-size: 0.85rem !important; } .lightbox-instruction { font-size: 0.8rem; margin: 0.8rem 0 0.2rem; padding: 0 20px; } .lightbox-controls { gap: 1rem; padding: 15px 10px 30px; } .lightbox-btn { padding: 0.6rem 1.2rem; font-size: 0.8rem; min-width: 80px; } .lightbox-btn.download-btn { min-width: 100px; } }
