@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f5f0 0%, #e8ddd4 100%);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

/* Container */
.container {
    padding: 0 2rem;
}

/* Block 1: Hero Section - Istanbul Courtyard Inspired */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #8b4513 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 1.2rem;
    margin: 1.5rem 0 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #2c3e50;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
}

/* Specialists Section - Warm Terracotta */
.specialists-section {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

.specialist {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.specialist:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.specialist .title {
    color: #f4e4c1;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Subscription Section - Cool Blue */
.subscription-section {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ecf0f1;
    padding: 4rem 0;
    text-align: center;
}

.subscription-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.subscription-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.subscription-form input[type="email"]:focus {
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1), 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.subscribe-button {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    background: linear-gradient(135deg, #f85a4e 0%, #e74c3c 100%);
}

/* Reviews Section - Warm Cream */
.reviews-section {
    background: linear-gradient(135deg, #f4e4c1 0%, #e8dcc0 100%);
    color: #5d4037;
    padding: 4rem 0;
    text-align: center;
}

.reviews-section h2 {
    color: #8b4513;
}

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

.review {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
    border-left: 4px solid #d4af37;
    position: relative;
}

.review::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.reviewer {
    font-weight: 600;
    color: #8b4513;
    margin-top: 1rem;
    font-style: italic;
}

/* Products Section - Rich Brown */
.products-section {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f4e4c1;
    padding: 4rem 0;
    text-align: center;
}

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

.product {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.product:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.product .price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1rem 0 1.5rem;
    font-family: 'Playfair Display', serif;
}

.product ul {
    list-style: none;
    text-align: left;
}

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

.product li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Article Styling */
.streaming-guide {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid #d4af37;
    position: relative;
}

.streaming-guide::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #d4af37, #b8860b, #d4af37);
    border-radius: 20px;
    z-index: -1;
}

.streaming-guide h3 {
    color: #8b4513;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.streaming-guide p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section - Deep Blue */
.contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 4rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.address h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #bdc3c7;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #d4af37;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: 400px;
        padding: 3rem 0;
    }

    .specialists-grid,
    .reviews-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subscription-form {
        flex-direction: column;
        align-items: center;
    }

    .subscription-form input[type="email"] {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .streaming-guide {
        padding: 2rem;
        margin-top: 2rem;
    }

    .product {
        padding: 2rem 1.5rem;
    }

    .specialist,
    .review {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 350px;
        padding: 2rem 0;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .streaming-guide {
        padding: 1.5rem;
    }

    .streaming-guide h3 {
        font-size: 1.4rem;
    }

    .streaming-guide p {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
a:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
}
