/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #faf8f4;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #8B4513;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    border-bottom: 3px solid #D2691E;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #A0522D;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #D2691E;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #8B4513;
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, #D2691E, #FF8C00);
    color: white;
    border-color: #D2691E;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background-color: #A0522D;
    color: white;
    border-color: #A0522D;
}

.btn-secondary:hover {
    background-color: #8B4513;
    border-color: #8B4513;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #D2691E;
    border-color: #D2691E;
}

.btn-outline:hover {
    background-color: #D2691E;
    color: white;
    text-decoration: none;
}

/* Header */
.header {
    background-color: #8B4513;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #faf8f4;
    font-family: 'Trebuchet MS', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #faf8f4;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: #D2691E;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #faf8f4;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #DEB887 0%, #D2691E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    color: #faf8f4;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-banner {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #A0522D;
    margin-bottom: 3rem;
    font-style: italic;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #D2691E;
}

.stat-label {
    font-size: 0.9rem;
    color: #A0522D;
}

.about-contact {
    background: linear-gradient(135deg, #DEB887, #D2B48C);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-contact h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #F5DEB3, #DEB887);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid #D2691E;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card ul {
    text-align: left;
    margin-top: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #A0522D;
}

/* Destinations Section */
.destinations-section {
    background-color: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #DEB887;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.destination-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: 1.5rem;
}

.destination-location {
    color: #D2691E;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #F5DEB3, #DEB887);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #D2691E;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background-color: #D2691E;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #A0522D;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #DEB887, #D2B48C);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #D2691E;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.testimonial-author strong {
    color: #8B4513;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    border-bottom: 3px solid #D2691E;
}

.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background-color: rgba(255,255,255,0.9);
    color: #2c1810;
}

.form-group input:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 0 10px rgba(210, 105, 30, 0.5);
}

.checkbox-group {
    text-align: left;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #D2691E;
    display: block;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    background-color: #D2691E;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #8B4513;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #2c1810;
    color: #faf8f4;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #faf8f4;
}

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

.footer-links h4,
.footer-contact h4 {
    color: #D2691E;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #A0522D;
    padding-top: 1rem;
    text-align: center;
    color: #A0522D;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c1810;
    color: white;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content h3 {
    color: #D2691E;
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #A0522D;
}

.close:hover {
    color: #D2691E;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #DEB887;
    border-radius: 10px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category span {
    font-size: 0.9rem;
    color: #A0522D;
}

/* Legal Content */
.legal-content {
    padding: 8rem 0 4rem;
    background-color: white;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #8B4513;
    border-bottom: 2px solid #D2691E;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #A0522D;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #A0522D;
    font-style: italic;
    margin-bottom: 2rem;
}

address {
    font-style: normal;
    line-height: 1.8;
    background-color: #F5DEB3;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #D2691E;
}

/* Cookie Policy Tables */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.cookie-table th {
    background-color: #D2691E;
    color: white;
    font-weight: bold;
}

.cookie-table tr:hover {
    background-color: #F5DEB3;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 3rem;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #DEB887, #D2691E);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content h1 {
    color: #8B4513;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thanks-details {
    text-align: left;
    margin: 2rem 0;
}

.thanks-details h3 {
    color: #D2691E;
    margin-bottom: 1rem;
}

.thanks-details ul {
    margin-left: 2rem;
}

.thanks-details li {
    margin-bottom: 0.5rem;
    color: #A0522D;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Article Content */
.article-content {
    padding-top: 6rem;
    background-color: white;
}

.blog-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background-color: #D2691E;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.article-date,
.article-read-time {
    color: #A0522D;
    font-size: 0.9rem;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #A0522D;
    font-style: italic;
    margin-bottom: 2rem;
}

.article-hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body section {
    margin-bottom: 3rem;
    padding: 0;
}

.article-body h2 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #D2691E;
    padding-bottom: 0.5rem;
}

.article-body h3 {
    color: #A0522D;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.article-body strong {
    color: #8B4513;
}

.article-footer {
    border-top: 2px solid #DEB887;
    padding-top: 2rem;
    margin-top: 3rem;
}

.article-tags {
    margin-bottom: 2rem;
}

.tag {
    background-color: #DEB887;
    color: #8B4513;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.article-share h4 {
    color: #A0522D;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    background-color: #D2691E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: #8B4513;
    text-decoration: none;
    transform: translateY(-2px);
}

.article-sidebar {
    background: linear-gradient(135deg, #F5DEB3, #DEB887);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.related-articles {
    margin-bottom: 2rem;
}

.related-articles h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.related-article {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.related-article a {
    color: #A0522D;
    font-weight: 500;
}

.related-article a:hover {
    color: #D2691E;
}

.contact-cta {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-cta h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #A0522D;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .services-grid,
    .destinations-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .thanks-content {
        padding: 2rem 1rem;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .article-share,
    .contact-cta {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .article-content {
        padding-top: 0;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #D2691E;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background-color: white;
        color: black;
    }
    
    .hero {
        background: linear-gradient(135deg, #000080 0%, #000000 100%);
    }
    
    .btn-primary {
        background: black;
        color: white;
        border-color: black;
    }
}
