:root {
    --color-olive: #8E825D;
    --color-sand: #D8BD9F;
    --color-terracotta: #BF7950;
    --color-burgundy: #502316;
    --color-taupe: #C6B5AD;
    --color-off-white: #F2D0BD;
    --color-text: var(--color-burgundy);
    --color-text-light: var(--color-olive);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --container-width: 1100px;
    --spacing-lg: 100px;
    --spacing-md: 60px;
    --spacing-sm: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-off-white);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-weight: 300;
}

body.no-scroll {
    overflow: hidden;
}

main {
    position: relative;
    z-index: 2;
    background-color: var(--color-off-white);
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

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

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(242, 208, 189, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo span {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-burgundy);
    margin-left: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.6;
}

.nav-cta {
    background-color: var(--color-burgundy);
    color: white !important;
    padding: 10px 20px;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--color-burgundy);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-burgundy);
}

.hero-cta:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Dictionary Entry Section */
.intro {
    padding: var(--spacing-lg) 0;
    display: flex;
    justify-content: center;
}

.dictionary-entry {
    max-width: 800px;
    text-align: left;
    padding: 60px;
    background-color: transparent;
}

.dictionary-entry .word {
    font-size: 6rem;
    color: var(--color-burgundy);
    margin-bottom: 0;
    font-family: var(--font-serif);
    font-weight: 800;
    line-height: 1;
}

.dictionary-entry .greek {
    font-size: 3.5rem;
    color: var(--color-terracotta);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.dictionary-entry .pronunciation {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: lowercase;
    letter-spacing: 3px;
    color: var(--color-olive);
    margin-bottom: 30px;
}

.dictionary-entry .dict-line {
    border: none;
    border-top: 2px solid var(--color-burgundy);
    width: 200px;
    margin: 0 0 40px 0;
    opacity: 0.8;
}

.dictionary-entry .definition p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-text);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.dictionary-entry .definition em {
    font-style: italic;
    color: var(--color-terracotta);
}

.dictionary-entry .definition strong {
    color: var(--color-burgundy);
    font-weight: 500;
}

@media (max-width: 768px) {
    .dictionary-entry {
        padding: 40px 20px;
        text-align: center; /* Center on mobile for better flow */
    }
    .dictionary-entry .word {
        font-size: 4rem;
    }
    .dictionary-entry .greek {
        font-size: 2.2rem;
    }
    .dictionary-entry .dict-line {
        margin: 0 auto 30px auto;
    }
}

/* Services Section */
.services {
    padding-bottom: var(--spacing-lg);
}

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

.service-block {
    text-align: center;
}

.service-img-wrapper {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--color-sand);
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-block h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-block p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    padding: 0 10px;
}

/* Experience Section */
.experience {
    background-color: var(--color-terracotta);
    padding: 80px 0;
    text-align: center;
    color: var(--color-off-white);
}

.experience-keywords {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.experience-keywords span {
    margin: 0 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-burgundy);
    border-radius: 50%;
    opacity: 0.6;
}

/* About Section */
.about {
    padding: var(--spacing-lg) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.credibility {
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-text) !important;
    margin-top: 30px;
}

/* Gallery Strip */
.gallery-strip {
    padding: var(--spacing-md) 0;
    overflow: hidden;
}

.gallery-inner {
    display: flex;
    gap: 20px;
    animation: scrollGallery 40s linear infinite;
}

.gallery-inner img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Main Footer - Full Screen */
.main-footer {
    min-height: 100vh;
    width: 100%;
    background-color: var(--color-burgundy);
    color: var(--color-off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2000;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-divider .shape-fill {
    fill: var(--color-off-white);
}

.booking {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.booking h2 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.booking p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(242, 208, 189, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

.footer-logo {
    height: 80px;
    width: auto;
    margin-right: 20px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(330deg); /* Color it like sand */
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-details {
    text-align: right;
}

.footer-details p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.6;
}

.whatsapp-btn-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: var(--color-off-white);
    color: var(--color-burgundy);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-off-white);
}

.whatsapp-btn-large:hover {
    background-color: transparent;
    color: var(--color-off-white);
}

.contact-secondary {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-secondary p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.8;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-secondary a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
    border-bottom: 1px solid transparent;
}

.contact-secondary a:hover {
    opacity: 1;
    border-bottom: 1px solid var(--color-off-white);
}

.instagram-link {
    margin-top: 10px;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    border-bottom: none !important;
}

.instagram-link a:hover {
    opacity: 1;
}

.insta-icon {
    stroke: var(--color-off-white);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .booking-footer h2 { font-size: 3rem; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-details { text-align: center; }
    .main-footer { height: auto; min-height: 100vh; }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

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

/* Responsive */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-off-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0 !important;
        margin-left: 0 !important;
    }

    .nav-links a {
        font-size: 1.8rem !important;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero h1 { font-size: 3rem; }
    .service-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-text { font-size: 1.5rem; }
    .booking h2 { font-size: 2.5rem; }
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
