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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background: linear-gradient(135deg, #F7F5F0 0%, #E8DDD4 100%);
    position: relative;
}

/* Add subtle washi paper texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(74, 93, 122, 0.02) 0%, transparent 50%);
    background-size: 100px 100px, 150px 150px;
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', 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; }

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

/* Header */
.header {
    background: rgba(248, 246, 242, 0.95);
    border-bottom: 2px solid rgba(74, 93, 122, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4A5D7A;
    margin: 0;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(74, 93, 122, 0.05) 0%, rgba(139, 69, 19, 0.05) 100%);
}

.hero-content h2 {
    font-size: 2.8rem;
    color: #4A5D7A;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5D6B7D;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

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

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #E8DDD4 0%, #D4C4B0 100%);
    border: 2px solid rgba(74, 93, 122, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    font-style: italic;
    text-align: center;
    padding: 20px;
    position: relative;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(139, 69, 19, 0.05) 10px,
        rgba(139, 69, 19, 0.05) 20px
    );
    border-radius: 6px;
}

.placeholder-image span {
    position: relative;
    z-index: 1;
}

.placeholder-image.large {
    height: 400px;
    margin-top: 2rem;
}

.placeholder-image.medium {
    height: 300px;
}

.placeholder-image.small {
    height: 200px;
}

/* Sections */
section {
    padding: 4rem 0;
    text-align: center;
}

section h2 {
    color: #4A5D7A;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4A5D7A, #8B4513);
    border-radius: 2px;
}

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

.destination-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(74, 93, 122, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
}

.destination-card .placeholder-image {
    height: 200px;
    margin-bottom: 1rem;
}

.destination-img,
.product-img,
.seasonal-img,
.insight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.seasonal-img {
    height: 300px;
    border-radius: 12px;
}

.destination-card h3 {
    color: #4A5D7A;
    margin-bottom: 0.5rem;
}

/* What We Offer */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.offer-item {
    text-align: center;
    padding: 1.5rem;
}

.offer-icon {
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.offer-item h3 {
    color: #4A5D7A;
    margin-bottom: 0.5rem;
}

/* Products */
.products {
    background: rgba(232, 221, 212, 0.3);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(74, 93, 122, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card .placeholder-image {
    height: 200px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #4A5D7A;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4A5D7A;
    margin: 1rem 0;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #4A5D7A 0%, #5D6B7D 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 93, 122, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #5D6B7D 0%, #4A5D7A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 93, 122, 0.4);
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 1.5rem;
}

.why-item h3 {
    color: #4A5D7A;
    margin-bottom: 0.5rem;
}

/* Seasonal */
.seasonal {
    background: rgba(74, 93, 122, 0.05);
}

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

.seasonal-text h3 {
    color: #4A5D7A;
    margin-bottom: 1rem;
}

.seasonal-text ul {
    list-style: none;
    padding-left: 0;
}

.seasonal-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.seasonal-text li::before {
    content: '◦';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-size: 1.2rem;
}

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

.insight-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(74, 93, 122, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insight-item .placeholder-image {
    margin-bottom: 1rem;
}

.insight-item h3 {
    color: #4A5D7A;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background: rgba(232, 221, 212, 0.3);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(74, 93, 122, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #5D6B7D;
}

.testimonial cite {
    color: #4A5D7A;
    font-weight: 500;
}

/* Contact */
.contact {
    background: rgba(74, 93, 122, 0.05);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    color: #4A5D7A;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #5D6B7D;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 3rem 0;
}

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

.footer-section h4 {
    color: #E8DDD4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: #B8C3D0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #E8DDD4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info p {
    color: #E8DDD4;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 221, 212, 0.2);
    padding-top: 1.5rem;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #B8C3D0;
    margin: 0;
    font-size: 0.9rem;
}

/* 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);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

.modal h2 {
    color: #4A5D7A;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4A5D7A;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(74, 93, 122, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A5D7A;
}

.submit-button {
    background: linear-gradient(135deg, #4A5D7A 0%, #5D6B7D 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #5D6B7D 0%, #4A5D7A 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .seasonal-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .placeholder-image.large {
        height: 250px;
    }
    
    .placeholder-image.medium {
        height: 200px;
    }
    
    .destination-img,
    .product-img,
    .insight-img {
        height: 180px;
    }
    
    .seasonal-img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-img {
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
}