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

/* Custom Font Faces */
/* Apris - Display Font (for headings and titles) */
@font-face {
    font-family: 'Apris Trial';
    src: url('assets/Fonts/apris-v10-woff/apris-v10-woff/Apris-Regular.woff2') format('woff2'),
         url('assets/Fonts/apris-v10-otps/apris-v10-otps/Apris-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Maison Neue - Body Font */
@font-face {
    font-family: 'Maison Neue';
    src: url('assets/Fonts/myfonts_order_6786026766506/MaisonNeue-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('assets/Fonts/myfonts_order_6786026766506/MaisonNeue-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('assets/Fonts/myfonts_order_6786026766506/MaisonNeue-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('assets/Fonts/myfonts_order_6786026766506/MaisonNeue-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Maison Neue Mono - Monospace Font */
@font-face {
    font-family: 'Maison Neue Mono';
    src: url('assets/Fonts/myfonts_order_6786026766506/MaisonNeueMono-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue Mono';
    src: url('assets/Fonts/myfonts_order_6786026766506/MaisonNeueMono-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Roboto Mono fallback - using Maison Neue Mono */
@font-face {
    font-family: 'Roboto Mono';
    src: url('assets/Fonts/myfonts_order_6786026766506/MaisonNeueMono-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Root Variables */
:root {
    --color-primary: #301912;
    --color-secondary: #b29786;
    --color-text-dark: #1e1e1e;
    --color-text-medium: #595454;
    --color-text-light: #676464;
    --color-bg-light: #f2f1eb;
    --color-white: #ffffff;
    --color-overlay: rgba(0, 0, 0, 0.3);

    --font-display: 'Apris Trial', serif;
    --font-body: 'Maison Neue', sans-serif;
    --font-mono: 'Maison Neue Mono', monospace;
    --font-mono-secondary: 'Roboto Mono', monospace;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    background: var(--color-white);
    overflow-x: hidden;
}

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

/* Smooth scroll offset for fixed navigation */
section {
    scroll-margin-top: 85px;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 20px 0;
}

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

.nav-logo {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    height: 25.783px;
    width: 153.217px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-light);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 28px;
    height: 2px;
    background: var(--color-text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 999;
    display: none;
}

@media (max-width: 480px) {
    .mobile-menu {
        display: block;
    }
}

.mobile-menu.active {
    height: calc(100vh - 65px);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 32px;
    align-items: center;
}

.mobile-menu-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

.mobile-book-btn {
    margin-top: 16px;
    width: 200px;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 884px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 216px;
    height: 38px;
}

.hero-logo img {
    width: 100%;
    height: 100%;
}

/* Video Sound Toggle Button */
.video-sound-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-sound-btn .sound-icon {
    width: 22px;
    height: 22px;
    color: white;
}

/* Introduction Section */
.intro-section {
    background: var(--color-bg-light);
    padding: 92px 100px 92px;
    min-height: 762px;
}

.intro-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

.intro-left {
    position: relative;
    width: 592px;
    min-height: 578px;
    flex-shrink: 0;
}

.intro-images-wrapper {
    position: relative;
    width: 100%;
    height: 578px;
}

.intro-image-main {
    position: absolute;
    left: 74px;
    top: 0;
    width: 465.865px;
    height: 578px;
    object-fit: cover;
    z-index: 2;
}

.intro-image-secondary {
    position: absolute;
    left: 160.61px;
    top: 82.96px;
    width: 293.559px;
    height: 391.107px;
    object-fit: cover;
    z-index: 3;
}

.intro-title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 400;
    line-height: 48px;
    color: var(--color-text-light);
    position: absolute;
    left: 0;
    top: 241px;
    z-index: 4;
    max-width: 592px;
    white-space: nowrap;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 108px;
    padding-top: 20px;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.section-label-white {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.intro-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.intro-text p {
    margin-bottom: 16px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* About Kenshō Paros Section */
.about-paros {
    padding: 100px;
    min-height: 600px;
}

.about-paros-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 505px 1fr;
    gap: 60px;
}

.about-paros-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-end;
}

.about-paros-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    color: var(--color-text-dark);
    margin-top: 8px;
}

.section-title-white {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    color: var(--color-white);
    margin-top: 8px;
}

.brush-illustration {
    width: 325.297px;
    height: 177px;
    transform: rotate(270deg);
}

.brush-illustration img {
    width: 100%;
    margin-left: 44px;
    object-fit: contain;
}

.about-paros-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    width: 100%;
}

.about-paros-text p {
    margin-bottom: 16px;
}

.about-paros-text p:last-child {
    margin-bottom: 0;
}

.about-paros-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

.paros-image-small {
    width: 377px;
    height: 251px;
    object-fit: cover;
    margin-left: auto;
}

.paros-image-large {
    height: 350px;
    object-fit: cover;
}

/* Paros Island Section */
.paros-section {
    position: relative;
    height: 801px;
    overflow: hidden;
    background-image: url('assets/images/hero-beach.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.paros-bg {
    display: none;
}

.paros-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 1;
}

.paros-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 476px;
    text-align: center;
    z-index: 2;
}

.paros-content .section-label-white {
    margin-bottom: 8px;
}

.paros-content .section-title-white {
    margin-bottom: 53px;
}

.paros-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    text-align: center;
}

.paros-text p {
    margin-bottom: 16px;
}

.paros-text p:last-child {
    margin-bottom: 0;
}

/* Accommodation Section */
.accommodation-section {
    padding: 100px 80px;
    background: var(--color-bg-light);
}

.accommodation-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 690px 1fr;
    gap: 40px;
    align-items: center;
}

.accommodation-gallery {
    padding: 20px;
}

.accommodation-carousel {
    position: relative;
    width: 650px;
    height: 450px;
    overflow: hidden;
}

.accommodation-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.accommodation-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

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

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

.accommodation-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.accommodation-dot.active {
    background: var(--color-white);
}

.accommodation-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 449px;
    justify-content: space-between;
}

.accommodation-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.accommodation-text p {
    margin-bottom: 16px;
}

.accommodation-text p:last-child {
    margin-bottom: 0;
}

.btn-secondary {
    border: 1px solid var(--color-text-dark);
    background: transparent;
    color: var(--color-text-dark);
    font-family: var(--font-mono-secondary);
    font-size: 14px;
    letter-spacing: 1.12px;
    padding: 16px;
    width: 168px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Wellness Section */
.wellness-section {
    padding: 100px;
    background: var(--color-bg-light);
    text-align: center;
    position: relative;
}

.wellness-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/texture-bg.jpg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.05;
    pointer-events: none;
}

.centered {
    text-align: center;
    margin: 0 auto;
}

.wellness-section .section-label {
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.wellness-section .section-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.wellness-grid {
    display: grid;
    grid-template-columns: 450px 464px;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.wellness-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.wellness-text {
    max-width: 896px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    text-align: center;
    position: relative;
    z-index: 1;
}

.wellness-text p {
    margin-bottom: 16px;
}

.wellness-text p:last-child {
    margin-bottom: 0;
}

/* Dining Section */
.dining-section {
    padding: 100px;
}

.dining-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 482px 1fr;
    gap: 60px;
}

.dining-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dining-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.dining-text p {
    margin-bottom: 16px;
}

.dining-text p:last-child {
    margin-bottom: 0;
}

.dining-images {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.dining-image-bg {
    width: 799px;
    height: 451px;
    object-fit: cover;
    transform: scaleY(-1) rotate(180deg);
}

.dining-image-front {
    width: 399px;
    height: 418px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 100px;
}

.gallery-section .section-label {
    margin-bottom: 20px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.gallery-arrow-left {
    left: 20px;
}

.gallery-arrow-right {
    right: 20px;
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-arrow:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
}

.gallery-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    width: 100%;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
}

.gallery-scroll img {
    height: 415px;
    width: auto;
    scroll-snap-align: start;
    object-fit: cover;
}

/* Booking CTA Section */
.booking-cta {
    background: var(--color-secondary);
    height: 266px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px 0 52px;
    position: relative;
}

.booking-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 400;
    line-height: 48px;
    color: var(--color-primary);
}

.btn-cta {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-mono-secondary);
    font-size: 14px;
    letter-spacing: 1.12px;
    padding: 16px;
    width: 302px;
    height: 115px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: absolute;
    right: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-cta:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--color-bg-light);
    min-height: 208px;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
    height: 100%;
}

.footer-column {
    flex: 1;
}

.footer-column-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.48px;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.footer-contact-email {
    font-family: var(--font-mono-secondary);
    font-size: 12px;
    letter-spacing: 0.48px;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-email:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 27px;
    margin-top: 10px;
}

.social-icons a {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons img {
    width: 100%;
    height: 100%;
}

.footer-logo {
    width: 118px;
    height: 127px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-copyright {
    font-family: var(--font-mono-secondary);
    font-size: 12px;
    letter-spacing: 0.48px;
    color: var(--color-text-light);
    text-align: right;
    line-height: 1.5;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .nav-bar,
    .intro-container,
    .about-paros-grid,
    .accommodation-grid,
    .dining-grid,
    .footer-content {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .intro-container {
        flex-direction: column;
        gap: 60px;
    }

    .intro-left {
        position: relative;
        width: 100%;
        min-height: auto;
        flex-shrink: 0;
    }

    .intro-title {
        position: static;
        margin-top: 40px;
    }

    .about-paros-grid,
    .accommodation-grid,
    .dining-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .booking-cta {
        flex-direction: column;
        height: auto;
        padding: 60px 40px;
        text-align: center;
        gap: 40px;
    }

    .btn-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 20px;
    }

    .hero {
        height: 500px;
    }

    .intro-section,
    .about-paros,
    .wellness-section,
    .dining-section,
    .gallery-section {
        padding: 60px 20px;
    }

    .accommodation-section {
        padding: 60px 20px;
    }

    .section-title,
    .section-title-white {
        font-size: 36px;
    }

    .booking-title {
        font-size: 48px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-column {
        flex: none;
        width: 100%;
    }

    .footer-column-left {
        align-items: center;
    }

    .footer-column-center {
        order: -1;
    }

    .footer-column-right {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-copyright {
        text-align: center;
    }

    /* Intro section images */
    .intro-images-wrapper {
        position: relative;
        height: auto;
        min-height: 400px;
        overflow: hidden;
    }

    .intro-image-main {
        position: relative;
        left: 0;
        width: 100%;
        height: 400px;
        object-fit: cover;
        z-index: 2;
    }

    .intro-image-secondary {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 65%;
        height: auto;
        max-height: 260px;
        z-index: 3;
        margin-top: 0;
    }

    /* About Paros images */
    .about-paros-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .paros-image-small,
    .paros-image-large {
        width: 100%;
        height: auto;
    }

    /* Accommodation carousel */
    .accommodation-carousel {
        width: 100%;
        height: 300px;
    }

    .accommodation-gallery {
        width: 100%;
    }

    /* Dining images */
    .dining-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .dining-image-bg,
    .dining-image-front {
        width: 100%;
        height: auto;
        position: static;
    }

    /* Gallery arrows */
    .gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }

    .gallery-arrow-left {
        left: 10px;
    }

    .gallery-arrow-right {
        right: 10px;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 480px) {
    .nav-bar {
        padding: 15px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-book-btn {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        height: 400px;
    }

    .video-sound-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .video-sound-btn .sound-icon {
        width: 18px;
        height: 18px;
    }

    .hero-logo {
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: auto;
    }

    .hero-logo img {
        /* width: 150px; */
        height: 37px;
    }

    .intro-section,
    .about-paros,
    .wellness-section,
    .dining-section,
    .gallery-section {
        padding: 50px 20px;
    }

    .accommodation-section {
        padding: 50px 20px;
    }

    .section-title,
    .section-title-white {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .section-label,
    .section-label-white {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .booking-title {
        font-size: 36px;
        line-height: 1.2;
    }

    /* Navigation */
    .btn-primary {
        padding: 12px 24px;
        font-size: 12px;
    }

    .nav-logo img {
        height: 20px;
    }

    /* Intro section */
    .intro-container {
        gap: 10px;
    }

    .intro-images-wrapper {
        min-height: 300px;
    }

    .intro-image-main {
        max-height: 300px;
    }

    .intro-image-secondary {
        width: 65%;
        max-height: 200px;
        margin-top: 0;
    }

    .intro-title {
        font-size: 32px;
        margin-top: 20px;
        line-height: 1.2;
    }

    .intro-right {
        gap: 0px;
    }

    .intro-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* About Paros */
    .about-paros-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .about-paros-content {
        margin-bottom: 0;
        display: contents;
    }

    .about-paros-content .section-label {
        order: 1;
        margin-bottom: 10px;
    }

    .about-paros-content .section-title {
        order: 2;
        margin-bottom: 15px;
    }

    .about-paros-header {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
    }

    .about-paros-images {
        order: 3;
        margin-bottom: 0;
    }

    .about-paros-content .brush-illustration {
        display: none;
    }

    .about-paros-content .about-paros-text {
        order: 5;
    }

    .about-paros-text p {
        font-size: 15px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .brush-illustration img {
        width: 80px;
    }

    /* Paros section */
    .paros-section {
        position: relative;
        height: 630px;
        overflow: hidden;
    }

    .paros-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        padding: 40px 20px;
    }

    .paros-content .section-title-white {
        margin-bottom: 36px;
    }

    .paros-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* Accommodation */
    .accommodation-grid {
        gap: 30px;
    }

    .accommodation-carousel {
        height: 250px;
        margin-bottom: 20px;
    }

    .accommodation-content {
        display: flex;
        flex-direction: column;
        gap: 0px;
        height: 422px;
        justify-content: space-between;
    }

    .accommodation-content .section-title {
        margin-bottom: 15px;
    }

    .accommodation-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .accommodation-dots {
        bottom: 15px;
    }

    .btn-secondary {
        width: 100%;
        padding: 16px 40px;
        font-size: 12px;
        margin-top: 17px;
    }

    /* Wellness */
    .wellness-section .section-title {
        margin-bottom: 15px;
    }

    .wellness-grid {
        gap: 15px;
        margin: 15px 0 30px 0;
    }

    .wellness-text {
        padding: 0;
        margin-top: 30px;
    }

    .wellness-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* Dining */
    .dining-section .section-title {
        margin-bottom: 15px;
    }

    .dining-grid {
        gap: 30px;
    }

    .dining-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .dining-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* Gallery */
    .gallery-scroll img {
        width: 280px;
        height: 350px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow svg {
        width: 18px;
        height: 18px;
    }

    .gallery-arrow-left {
        left: 8px;
    }

    .gallery-arrow-right {
        right: 8px;
    }

    /* Booking CTA */
    .booking-cta {
        padding: 50px 30px;
    }

    .btn-cta {
        padding: 18px 50px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        /* padding: 40px 20px; */
    }

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

    .footer-logo img {
        width: 80px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }

    .footer-copyright p {
        font-size: 11px;
    }
}
