/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a0522d;
}

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

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    font-size: 20px;
    font-weight: bold;
    color: #8b4513;
    font-family: 'Arial', sans-serif;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 15px;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    color: #444;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b4513;
}

/* Editorial Container - Narrow Content */
.editorial-container {
    margin-top: 80px;
    padding-bottom: 60px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Editorial Style */
.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #e8dcc8;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-intro {
    font-size: 22px;
    line-height: 1.5;
}

/* Typography */
.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
    font-style: italic;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #444;
}

.content-narrow p {
    margin-bottom: 25px;
}

/* Inline Images */
.inline-image {
    margin: 50px 0;
    background-color: #e8dcc8;
}

.inline-image img {
    width: 100%;
    height: auto;
}

/* Service Cards - Editorial Style */
.services-inline {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.service-card-editorial {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-card-editorial.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8dcc8;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-details {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #8b4513;
    margin: 20px 0;
}

.cta-inline {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.cta-inline:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
}

/* Form Section */
.form-section-centered {
    max-width: 600px;
    margin: 80px auto;
    padding: 50px 30px;
    background-color: #f9f7f4;
    border-radius: 10px;
}

.form-section-centered h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-section-centered > p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b4513;
}

.btn-submit {
    padding: 15px 30px;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #8b4513;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-subtitle {
    font-size: 22px;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.cta-section-centered {
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cta-section-centered p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-info-block {
    background-color: #f9f7f4;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.email-display {
    font-size: 20px;
    color: #444;
    font-family: 'Courier New', monospace;
}

.contact-note {
    margin-top: 30px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8b4513;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #444;
}

.thanks-details {
    background-color: #f9f7f4;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

#selected-service-display {
    font-size: 20px;
    font-weight: bold;
    color: #8b4513;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.next-steps ol {
    padding-left: 25px;
    line-height: 1.8;
}

.next-steps li {
    margin-bottom: 15px;
    color: #555;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    font-size: 16px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #555;
}

.legal-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table {
    background-color: #f9f7f4;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #8b4513;
    color: #fff;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #d2b48c;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background-color: #8b4513;
    color: #fff;
}

.btn-accept:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        padding: 8px 20px;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .lead-text {
        font-size: 20px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .section-heading {
        font-size: 32px;
    }

    .service-card-editorial,
    .service-card-editorial.reverse {
        flex-direction: column;
    }

    .service-text h3 {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}