/* CSS Variables */
:root {
    --primary-color: #2D3748;
    --accent-color: #E53E3E;
    --background-color: #F7FAFC;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --text-light: #A0AEC0;
    --border-color: #E2E8F0;
    --shadow-light: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-large: 0 10px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* Buttons */
.cta-button, .product-button, .submit-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover, .product-button:hover, .submit-button:hover {
    background-color: #C53030;
}

.product-button {
    width: 100%;
    margin-top: 1rem;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #EDF2F7 0%, #E2E8F0 100%);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23A0AEC0" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23A0AEC0" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23A0AEC0" opacity="0.1"/><circle cx="60" cy="10" r="0.8" fill="%23A0AEC0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.placeholder-image.small { height: 200px; }
.placeholder-image.medium { height: 250px; }
.placeholder-image.large { height: 300px; }

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

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

.hero-content {
    display: flex;
    flex-direction: column;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 0;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-img, .route-img, .services-img, .product-img, .spots-img, .why-img, .contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
}

.route-img {
    height: 250px;
}

.product-img {
    height: 200px;
    margin-bottom: 1rem;
}

.services-img, .why-img, .contact-img {
    height: 300px;
}

.spots-img {
    height: 350px;
}

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

.centered-section {
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.centered-section .section-header,
.centered-section h2 {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-info p {
    margin: 0;
    color: #E2E8F0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #C53030;
}

.cookie-btn.reject {
    background: transparent;
    color: #E2E8F0;
    border: 1px solid #4A5568;
}

.cookie-btn.reject:hover {
    background: #4A5568;
    color: white;
}

.cookie-btn.customize {
    background: #4A5568;
    color: white;
    border: 1px solid #718096;
}

.cookie-btn.customize:hover {
    background: #2D3748;
}

.cookie-btn.save {
    background: var(--accent-color);
    color: white;
}

.cookie-btn.save:hover {
    background: #C53030;
}

.cookie-btn.cancel {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.cookie-btn.cancel:hover {
    background: var(--background-color);
}

.cookie-link {
    color: #E2E8F0;
    text-decoration: underline;
    font-size: 0.875rem;
}

.cookie-link:hover {
    color: var(--accent-color);
}

/* Cookie Customization Panel */
.cookie-customization {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-custom-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: var(--background-color);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.cookie-category-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.cookie-category-label input[type="checkbox"] {
    margin-right: 0.5rem;
    align-self: flex-start;
}

.cookie-category-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.cookie-category-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

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

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--background-color);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Featured Routes */
.featured-routes {
    background: var(--background-color);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.route-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.route-info {
    padding: 1.5rem;
}

.route-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.route-season {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    background: white;
}

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

.services-list {
    list-style: none;
    margin-top: 1.5rem;
}

.services-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.services-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Products Section */
.products {
    background: var(--background-color);
}

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

.product-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.product-card h3 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1rem 0;
}

/* Photo Spots Section */
.photo-spots {
    background: white;
}

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

.spots-features {
    margin-top: 2rem;
}

.spot-feature {
    margin-bottom: 1.5rem;
}

.spot-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Seasonal Section */
.seasonal {
    background: var(--background-color);
}

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

.season-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.season-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.season-period {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Why Choose Section */
.why-choose {
    background: white;
}

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

.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Membership Section */
.membership {
    background: var(--primary-color);
    color: white;
}

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

.membership h2 {
    color: white;
    margin-bottom: 1rem;
}

.membership p {
    color: #E2E8F0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Contacts Section */
.contacts {
    background: var(--background-color);
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    color: #E2E8F0;
    margin-top: 1rem;
}

.footer-brand-name {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-column a {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    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: 1rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--accent-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero .container,
    .services-content,
    .spots-content,
    .why-content,
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .routes-grid,
    .products-grid,
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .why-stats {
        grid-template-columns: 1fr;
    }
    
    .membership-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .brand {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }
    
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}