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

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

:root {
    /* Turkish-inspired color palette */
    --turkish-red: #E30A17;
    --turkish-blue: #0057B8;
    --turkish-gold: #D4AF37;
    --turkish-turquoise: #30D5C8;
    --turkish-navy: #02134F;
    --light-cream: #FFF9E6;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --section-padding: 80px 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--turkish-gold);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

.container {
    width: 100%;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--turkish-red);
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--turkish-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, rgba(2, 19, 79, 0.9), rgba(0, 87, 184, 0.8)),
                url('https://i.ibb.co/3fHdLFK/turkish-pattern.png');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 120px 20px;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 10 L10 0 L20 10 L10 20 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--turkish-gold);
}

.hero-section .btn {
    margin-top: 30px;
    background-color: var(--turkish-gold);
    color: var(--turkish-navy);
    font-size: 1.1rem;
    padding: 16px 36px;
    border: 2px solid var(--turkish-gold);
}

.hero-section .btn:hover {
    background-color: transparent;
    color: var(--light-text);
}

/* Products Section - Block 3 */
.products-section {
    background-color: var(--light-cream);
    position: relative;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.product {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--turkish-red), var(--turkish-blue));
}

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

.product h3 {
    font-size: 1.5rem;
    color: var(--turkish-navy);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--turkish-red);
    margin: 15px 0;
}

.product ul {
    list-style-type: none;
    margin: 20px 0;
}

.product ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.product ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--turkish-turquoise);
    font-weight: bold;
}

.article {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--turkish-turquoise);
}

.article h3 {
    color: var(--turkish-navy);
}

/* Specialists Section - Block 4 */
.specialists-section {
    background-color: var(--turkish-navy);
    color: var(--light-text);
}

.specialists-section h2 {
    color: var(--light-text);
}

.specialists-section h2::after {
    background-color: var(--turkish-turquoise);
}

.specialists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.specialist {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.specialist h3 {
    color: var(--turkish-gold);
}

.specialist p:first-of-type {
    font-weight: 500;
    color: var(--turkish-turquoise);
    margin-bottom: 20px;
}

/* Reviews Section - Block 5 */
.reviews-section {
    background-color: var(--turkish-turquoise);
    color: var(--turkish-navy);
}

.reviews-section h2 {
    color: var(--turkish-navy);
}

.reviews-section h2::after {
    background-color: var(--turkish-navy);
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.review {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.review::before {
    content: """;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.reviewer {
    font-weight: 600;
    color: var(--turkish-red);
    margin-top: 20px;
}

/* Subscription Form - Block 2 */
.subscription-section {
    background: linear-gradient(45deg, var(--turkish-blue), var(--turkish-navy));
    color: var(--light-text);
    text-align: center;
}

.subscription-section h2 {
    color: var(--light-text);
}

.subscription-section h2::after {
    background-color: var(--turkish-gold);
    left: 50%;
    transform: translateX(-50%);
}

.subscription-section form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.subscription-section input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.subscription-section .btn {
    background-color: var(--turkish-gold);
    color: var(--turkish-navy);
}

.subscription-section .btn:hover {
    background-color: var(--light-text);
}

/* Contact Section - Block 6 */
.contact-section {
    background-color: var(--light-cream);
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer - Block 7 */
.footer-section {
    background-color: var(--turkish-navy);
    color: var(--light-text);
    text-align: center;
    padding: 40px 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 80px 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .products-container,
    .specialists-container,
    .reviews-container {
        flex-direction: column;
    }

    .product,
    .specialist,
    .review {
        min-width: 100%;
    }

    .subscription-section form {
        flex-direction: column;
    }

    .subscription-section input[type="email"],
    .subscription-section .btn {
        width: 100%;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 15px;
    }

    .article {
        padding: 25px;
    }
}
