/* Βασικές Ρυθμίσεις */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
    background-color: #fff;
    line-height: 1.6;
}
h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
    color: #222;
    font-weight: normal;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Μενού Πλοήγησης (Header) */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}
.logo-text {
    font-size: 28px;
    letter-spacing: 1px;
    color: #bfa178; /* Χρυσό/Μπεζ χρώμα σπα */
}
.logo-img {
    max-height: 80px;
    width: auto;
    display: block;
}
nav {
    display: flex;
    gap: 25px;
}
nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
nav a:hover, nav a.active {
    color: #bfa178;
}

/* About Section */
.about-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 16px;
    font-style: italic;
    color: #777;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Κουμπί γενικής χρήσης */
.btn-primary {
    display: inline-block;
    background-color: #bfa178;
    color: #ffffff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}
.btn-primary:hover {
    background-color: #a88a64; /* Πιο σκούρο στο hover */
}

/* Hero Section (Κεντρική Οθόνη) */
.hero-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    padding: 0 20px;
}
.hero-content h1 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
}
.hero-subtitle {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 30px;
}
.hero-btn {
    display: inline-block;
    background-color: #bfa178;
    color: #ffffff;
    padding: 15px 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}
.hero-btn:hover {
    background-color: #a88a64; /* Πιο σκούρο χρυσό/μπεζ στο hover */
}
.hero-phone {
    color: #ffffff;
    font-size: 14px;
}

/* Services Page */
.page-header {
    text-align: center;
    margin: 80px auto 60px;
    max-width: 800px;
    padding: 0 20px;
}
.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.page-header p {
    color: #777;
    font-style: italic;
    font-size: 16px;
}

.services-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    padding: 30px;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.service-card h3 {
    color: #bfa178;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 25px;
    flex-grow: 1; /* Σπρώχνει το link προς τα κάτω */
}

.service-card .card-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #222;
    border-bottom: 2px solid #bfa178;
    padding-bottom: 3px;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.service-card .card-link:hover {
    color: #bfa178;
}

.services-cta {
    text-align: center;
    margin: 60px auto;
    padding: 30px;
    max-width: 700px;
    background-color: #fafafa;
    border: 1px solid #eee;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Page Cards */
.contact-cards-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    color: #bfa178;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 18px;
    word-wrap: break-word; /* For long emails */
}

.contact-card a {
    transition: color 0.3s ease;
}
.contact-card a:hover {
    color: #bfa178;
}

/* Policy Page */
.policy-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.8;
    color: #555;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #bfa178;
    font-size: 24px;
    margin-bottom: 15px;
}

.policy-section p {
    margin-bottom: 15px;
    font-size: 16px;
}

.policy-section blockquote {
    background-color: #fcfcfc;
    border-left: 4px solid #bfa178;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #333;
}

/* Footer */
footer {
    background-color: #222;
    color: #999;
    text-align: center;
    padding: 30px 20px;
    margin-top: 80px;
    font-size: 13px;
}
footer a {
    color: #ccc;
}

/* Responsive Design για Κινητά */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}