/* ============================
   GLOBAL STYLES
   ============================ */
:root {
    /* Earth Tones Color Palette */
    --primary-color: #5D7052; /* Olive Green (Λαδί) */
    --secondary-color: #D4AF37; /* Golden Sand (Χρυσαφί) */
    --tertiary-color: #8B5A2B; /* Earthy Brown (Καφέ Γης) */
    --accent-color: #C67C53; /* Terracotta */
    --stone-color: #A09484; /* Stone (Πέτρα) */
    --deep-sea-color: #2E6171; /* Deep Sea */
    --cream-color: #F5EFE0; /* Light Sand (Ανοιχτή Άμμος) */
    --sage-color: #BCBFA3; /* Sage (Φασκόμηλο) */
    --deep-olive: #3C4A38; /* Deep Olive (Σκούρο Λαδί) */
    --dark-earth: #513222; /* Dark Earth (Σκούρα Γη) */
    --pale-olive: #D6DCCC; /* Pale Olive (Ανοιχτό Λαδί) */
    
    /* General UI Variables */
    --text-color: var(--dark-earth);
    --light-color: var(--cream-color);
    --dark-color: var(--deep-olive);
    --gradient-start: var(--secondary-color);
    --gradient-end: var(--accent-color);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --border-radius: 8px;
    --inset-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--tertiary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--deep-olive);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--deep-olive);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-book {
    background-color: var(--secondary-color);
    color: var(--dark-earth) !important;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-book:hover {
    background-color: var(--tertiary-color);
    color: white !important;
    transform: translateY(-3px);
}

/* ============================
   HEADER STYLES
   ============================ */
#main-header {
    background-color: rgba(245, 239, 224, 0.95); /* Light sand with transparency */
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

#main-header.header-scrolled {
    padding: 5px 0;
    background-color: rgba(245, 239, 224, 0.98); /* Slightly more opaque on scroll */
    box-shadow: 0 2px 20px rgba(81, 50, 34, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: auto;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--tertiary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.hamburger-menu {
    cursor: pointer;
    display: none;
    font-size: 24px;
    color: var(--dark-color);
    transition: var(--transition);
}

/* ============================
   MOBILE NAVIGATION
   ============================ */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--cream-color);
    box-shadow: var(--box-shadow);
    z-index: 999;
    transform: translateY(-200%);
    transition: var(--transition);
    padding: 20px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    padding: 10px;
    color: var(--dark-color);
    font-weight: 500;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background-color: rgba(93, 112, 82, 0.1);
    color: var(--primary-color);
}

/* ============================
   SLIDESHOW STYLES
   ============================ */
#slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 74, 56, 0.3); /* Deep olive with transparency */
    z-index: 1;
}

#slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.slideshow-caption {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.slideshow-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slideshow-caption p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================
   WELCOME SECTION STYLES
   ============================ */
.welcome-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
}

/* Αφαιρέθηκε η αναφορά στο pattern.png */
.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Χρήση CSS pattern αντί για εικόνα */
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 0;
}

/* ============================
   FEATURED SECTION STYLES
   ============================ */
.featured-section {
    padding: 80px 0;
    background-color: var(--pale-olive);
    position: relative;
    overflow: hidden;
}

.featured-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1); /* Golden color with low opacity */
    z-index: 0;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* ============================
   GALLERY PREVIEW STYLES
   ============================ */
.gallery-preview {
    background-color: var(--cream-color);
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    transition: transform 0.5s;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ============================
   LOCATION SECTION STYLES
   ============================ */
.location-section {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 74, 56, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.location-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.location-features li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.location-features li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials-section {
    background-color: var(--pale-olive);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1); /* Golden color with low opacity */
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card::after {
    content: "\201D";
    font-size: 120px;
    position: absolute;
    bottom: -10px;
    right: 30px;
    color: rgba(93, 112, 82, 0.1);
    font-family: serif;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* ============================
   CTA SECTION STYLES
   ============================ */
/* Αφαιρέθηκε η αναφορά στο cta-background.jpg */
.cta-section {
    /* Χρήση gradient background αντί για εικόνα */
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Προσθήκη διακοσμητικών στοιχείων για αντικατάσταση της εικόνας */
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 10px
    );
    pointer-events: none;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ============================
   CHAT BUBBLE STYLES
   ============================ */
/* Chat Bubble Styles */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998; /* Μειωμένο z-index */
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-button i {
    font-size: 24px;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: 90vw;
    height: 450px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h4 {
    margin: 0;
    font-size: 18px;
}

.close-chat {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 5px;
}

.message p {
    margin: 0;
    word-wrap: break-word;
}

.message.received {
    align-self: flex-start;
    background-color: #f0f0f0;
    border-bottom-left-radius: 5px;
}

.message.sent {
    align-self: flex-end;
    background-color: #e3f2fd;
    border-bottom-right-radius: 5px;
}

.message.error {
    background-color: #ffebee;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typing indicator animation */
.typing-indicator {
    padding: 10px 15px;
}

.typing-dots {
    display: inline-block;
}

.typing-dots span {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #888;
    border-radius: 50%;
    margin-right: 3px;
    animation: typing 1.4s infinite both;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }
}

/* ============================
   SOCIAL MEDIA STYLES
   ============================ */
#social-media {
    background-color: var(--light-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    transform: scale(1.2);
    color: white;
}

/* Designer Logo Styles */
#designer-logo {
    margin-bottom: 10px;
}

#designer-logo a {
    display: inline-block;
    transition: var(--transition);
}

#designer-logo img {
    height: 80px; /* Πολύ μικρότερο μέγεθος */
    opacity: 0.5; /* Περισσότερη διαφάνεια */
    display: inline-block;
    transition: var(--transition);
}

#designer-logo a:hover img {
    opacity: 0.8; /* Λίγο πιο ορατό στο hover */
}

/* ============================
   FOOTER STYLES
   ============================ */
.footer {
    background: linear-gradient(135deg, var(--deep-olive), var(--dark-earth));
    color: white;
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary-color);
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: var(--sage-color);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-earth);
}

/* ============================
   COOKIES BANNER STYLES
   ============================ */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(81, 50, 34, 0.9);
    color: white;
    z-index: 9999;
    transition: var(--transition);
}

.cookies-banner.fade-out {
    opacity: 0;
}

.cookies-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookies-banner p {
    margin: 0;
    flex: 1;
}

.cookies-banner a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--dark-earth);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-left: 20px;
}

.btn-accept:hover {
    background-color: var(--accent-color);
    color: white;
}

/* ============================
   BACK TO TOP BUTTON STYLES
   ============================ */
#backToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 100px; /* Μετακίνηση αριστερότερα */
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 99;
    border: none;
    box-shadow: var(--box-shadow);
}

#backToTopBtn.show {
    display: flex;
}

#backToTopBtn:hover {
    transform: translateY(-5px);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity; /* Βελτιστοποίηση απόδοσης */
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animated-fade {
    animation: fadeIn 1s ease forwards;
}

.animated-slide {
    animation: slideUp 0.8s ease forwards;
}

.animated-pulse {
    animation: pulse 2s infinite;
}

/* Delay classes for sequential animations */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Navigation buttons for slideshow */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(93, 112, 82, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

#slideshow:hover .slideshow-nav {
    opacity: 1;
}

.slideshow-nav.prev {
    left: 20px;
}

.slideshow-nav.next {
    right: 20px;
}

.slideshow-nav:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* ============================
   RESPONSIVE STYLES
   ============================ */
@media (max-width: 1200px) {
    .slideshow-caption h2 {
        font-size: 2.5rem;
    }
    
    .slideshow-caption p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hamburger-menu {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .slideshow-caption h2 {
        font-size: 2rem;
    }
    
    .slideshow-caption p {
        font-size: 1rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #designer-logo img {
        height: 18px; /* Λίγο μικρότερο σε tablet */
    }
}

@media (max-width: 768px) {
    #slideshow {
        height: 60vh;
        margin-top: 70px;
    }
    
    .slideshow-caption {
        bottom: 10%;
    }
    
    .slideshow-caption h2 {
        font-size: 1.8rem;
    }
    
    .chat-bubble {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-window {
        width: 300px;
    }
    
    .footer h4 {
        margin-top: 30px;
    }
    
    #backToTopBtn {
        right: 80px; /* Μετακίνηση αριστερότερα σε μικρές οθόνες */
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-section,
    .featured-section,
    .gallery-preview,
    .location-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }
    
    #designer-logo img {
        height: 15px; /* Ακόμα μικρότερο σε κινητά */
    }
}

@media (max-width: 576px) {
    .slideshow-caption h2 {
        font-size: 1.5rem;
    }
    
    .cookies-content {
        flex-direction: column;
        padding: 15px;
    }
    
    .cookies-banner p {
        margin-bottom: 10px;
    }
    
    .btn-accept {
        margin-left: 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    /* Μείωση των εφέ κίνησης σε κινητές συσκευές για καλύτερη απόδοση */
    .animate-on-scroll {
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
}/* Quick Replies Styling for Chat */

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    margin: 10px 0;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-reply-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    animation: fadeInUp 0.5s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-reply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.quick-reply-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

/* Welcome message style */
.welcome-message {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 15px;
    border-radius: 15px;
    margin: 10px;
    text-align: center;
    animation: slideIn 0.4s ease-out;
}

.welcome-message h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.welcome-message p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

/* Update existing message styles for better visual hierarchy */
.message.sent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-left: auto;
    max-width: 100%;
}

.message.received {
    background: #f1f3f5;
    color: #333;
    margin-right: auto;
    max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .quick-reply-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .quick-replies {
        gap: 6px;
    }
}

/* Loading animation for quick replies */
.quick-replies.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Hide quick replies with animation */
.quick-replies.hidden {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
/* Rich Content Styling for Chat */

.rich-content {
    margin: 10px 0;
    animation: slideIn 0.3s ease-out;
}

/* Booking Button */
.booking-button {
    display: block;
    background: linear-gradient(135deg, #0066FF 0%, #003D99 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    margin: 10px 0;
}

.booking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, #0052CC 0%, #003380 100%);
}

/* Map Card */
.map-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.map-icon {
    font-size: 32px;
    min-width: 40px;
}

.map-info {
    flex: 1;
}

.map-address {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.map-link {
    display: inline-block;
    color: #0066FF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(0, 102, 255, 0.1);
    transition: all 0.2s ease;
}

.map-link:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateX(2px);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 10px 0;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item:first-child {
    grid-column: span 2;
}

/* Info Card */
.info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    color: white;
}

.info-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.info-icon {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
}

.info-text {
    font-size: 14px;
    font-weight: 500;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn:first-child {
    background: linear-gradient(135deg, #34c759 0%, #2a9d4c 100%);
    color: white;
}

.contact-btn:last-child {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .booking-button {
        font-size: 14px;
        padding: 12px 16px;
    }

    .map-card {
        padding: 12px;
    }

    .image-gallery {
        gap: 6px;
    }

    .contact-btn {
        font-size: 12px;
        padding: 10px;
    }
}

/* Rich content specific message container */
.message.received + .rich-content {
    margin-left: 0;
    margin-right: auto;
    max-width: 85%;
}

/* Smooth loading state */
.rich-content.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Calendar Button */
.calendar-bubble {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.calendar-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 109, 119, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.calendar-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 109, 119, 0.6);
    color: white;
}

.calendar-button i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .calendar-bubble {
        bottom: 90px;
        right: 20px;
    }

    .calendar-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Chat Calendar Styles */
.chat-calendar {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cal-nav {
    background: #006d77;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.cal-nav:hover {
    background: #005660;
}

.cal-title {
    font-weight: bold;
    color: #006d77;
    font-size: 14px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-header {
    text-align: center;
    font-weight: bold;
    font-size: 11px;
    color: #666;
    padding: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid transparent;
}

.cal-day.available {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.cal-day.booked {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
    position: relative;
}

.cal-day.booked::after {
    content: '✕';
    position: absolute;
    font-size: 16px;
    color: rgba(220, 53, 69, 0.3);
}

.cal-day.past {
    background: #e9ecef;
    color: #6c757d;
}

.cal-day.empty {
    background: transparent;
}

.calendar-legend {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    font-size: 11px;
    color: #666;
}

.leg-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 4px;
}

.leg-dot.available {
    background: #28a745;
}

.leg-dot.booked {
    background: #dc3545;
}

.view-full-calendar {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.view-full-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 109, 119, 0.4);
    color: white;
}
