/* ------------ COLORS & GLOBAL ------------ */
:root {
    --primary: #8B2E1A;
    --secondary: #D85C27;
    --accent: #5A3A20;
    --bg: #f6eee8;
    --bg-light: #fff7f2;
    --text: #3b2b1f;
    --text-light: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3 {
    font-family: Georgia, serif;
    color: var(--primary);
    margin-top: 0;
}

a {
    color: inherit;
}

/* ------------ LAYOUT ------------ */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-accent {
    background: #3a2617;
    color: var(--text-light);
}

.section-accent h2,
.section-accent h3 {
    color: #ffe1c7;
}

.section-intro {
    max-width: 640px;
    margin: 0 auto 32px;
    text-align: center;
    opacity: 0.9;
}

/* ------------ NAVBAR ------------ */

.site-header {
    background: #3a2617;
    color: var(--text-light);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative;
    z-index: 10;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-brand span {
    font-weight: 700;
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.nav-links a:hover {
    color: #ffd7b2;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 26px;
    cursor: pointer;
}

/* ------------ HERO ------------ */

.hero {
    position: relative;
    min-height: 68vh;
    background:
        linear-gradient(120deg, rgba(12, 6, 2, 0.65), rgba(90, 58, 32, 0.75)),
        url('../images/hero1.jpg') center/cover no-repeat;
    color: var(--text-light);
    display: flex;
    align-items: center;
    padding: 32px 0 72px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0, var(--bg) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 32px;
}

.hero-content {
    background: rgba(246, 238, 232, 0.92);
    color: #301a0d;
    padding: 32px 32px 28px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(122, 82, 52, 0.35);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    color: #8B2E1A;
    margin: 0 0 6px;
}

.hero-content h1 {
    margin: 0 0 10px;
    font-size: 32px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.22);
}

.hero-text {
    margin: 0 0 18px;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-highlight {
    align-self: center;
    background: rgba(17, 9, 4, 0.78);
    border-radius: 18px;
    padding: 20px 22px;
    color: #fde6cf;
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

.hero-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlight li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
}

.hero-highlight li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #ffd29f;
}

/* ------------ BUTTONS ------------ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.12s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.24);
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(139, 46, 26, 0.4);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(139, 46, 26, 0.08);
}

/* ------------ SECTIONS ------------ */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.image-panel img {
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Rooms cards */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-body {
    padding: 16px 18px 18px;
    font-size: 14px;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.gallery-grid img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-grid img:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* Map */

.map-wrapper iframe {
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.contact-list li {
    margin-bottom: 6px;
}

/* Contact form */

.contact-form {
    max-width: 420px;
    background: rgba(0,0,0,0.15);
    padding: 18px 18px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
}

.contact-form .form-row {
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 90px;
    resize: vertical;
}

.form-note {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 8px;
}

/* ------------ FOOTER ------------ */

.site-footer {
    background: #24150c;
    color: #f6ded0;
    padding: 18px 0;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

/* ------------ BACK TO TOP ------------ */

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 999;
}

#backToTop:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.backToTop--show {
    opacity: 1;
    visibility: visible;
}

/* ------------ RESPONSIVE ------------ */

@media (max-width: 900px) {
    .hero-grid,
    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 20px;
    }

    .hero-content {
        margin-bottom: 16px;
    }

    .hero-highlight {
        max-width: 420px;
    }
}

@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    /* Στο mobile το menu ξεκινά ΚΡΥΦΟ */
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        margin: 0;
        padding: 12px 20px 16px;
        background: #3a2617;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        display: none;
    }

    /* Όταν έχει κλάση .nav-open → ΕΜΦΑΝΙΖΕΤΑΙ */
    .nav-links.nav-open {
        display: flex;
    }

    .section {
        padding: 52px 0;
    }

    .gallery-grid img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 22px 18px 18px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
