/* Adana Style CSS - Turkish Accounting Website */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

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

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 1rem;
}

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

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

/* Block 1: Hero Section - Adana Sunset Colors */
#hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 50%, #ff8a65 100%);
    color: white;
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

#hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

#hero h2 {
    color: #fff3e0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.4);
    border-color: white;
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

/* Block 2: Subscribe Form - Turkish Delight Pink */
#subscribe {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 80px 0;
    color: #2c3e50;
}

#subscribe h2 {
    text-align: center;
    color: #8e44ad;
    margin-bottom: 1rem;
}

#subscribe p {
    text-align: center;
    color: #6c5ce7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e17055;
    border-radius: 30px;
    font-size: 1rem;
    background: white;
    color: #2c3e50;
    min-width: 250px;
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: #d63031;
    box-shadow: 0 0 10px rgba(214, 48, 49, 0.2);
}

.subscribe-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #e17055 0%, #d63031 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(225, 112, 85, 0.3);
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 112, 85, 0.4);
}

/* Block 3: Services - Mediterranean Blue */
#services {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    padding: 80px 0;
    color: white;
}

#services h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.service {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.service h3 {
    color: #fff3cd;
    margin-bottom: 1rem;
}

.service p {
    color: #e8f4f8;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffeaa7;
    font-family: 'Playfair Display', serif;
}

/* Article Highlight */
.article {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-top: 3rem;
    color: #2c3e50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #e17055;
}

.article h3 {
    color: #e74c3c;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.article p {
    text-align: justify;
    color: #34495e;
    line-height: 1.8;
    font-size: 1rem;
}

/* Block 4: Team - Earthy Tones */
#team {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8a3 100%);
    padding: 80px 0;
    color: #2c3e50;
}

#team h2 {
    text-align: center;
    color: #27ae60;
    margin-bottom: 3rem;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.3);
}

.team-member h3 {
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: #e17055;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Block 5: Reviews - Warm Sunset */
#reviews {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 80px 0;
    color: #2c3e50;
}

#reviews h2 {
    text-align: center;
    color: #e17055;
    margin-bottom: 3rem;
}

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

.review {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(225, 112, 85, 0.2);
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(225, 112, 85, 0.3);
}

.review h3 {
    color: #d63031;
    margin-bottom: 1rem;
}

.review p {
    color: #636e72;
    font-style: italic;
    margin-bottom: 1rem;
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
    text-align: center;
}

/* Block 6: Contact - Professional Dark */
#contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    color: white;
}

#contact h2 {
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 3rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.1);
}

/* Block 7: Footer */
#copyright {
    background: #2c3e50;
    padding: 30px 0;
    color: #bdc3c7;
    text-align: center;
    border-top: 3px solid #e74c3c;
}

#copyright p {
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        margin: 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 1.4rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

    .subscribe-form input[type="email"] {
        width: 100%;
        margin-bottom: 15px;
        min-width: auto;
    }

    .subscribe-form button {
        width: 200px;
    }

    .services-grid,
    .team-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service,
    .team-member,
    .review {
        padding: 20px;
    }

    .article {
        padding: 25px;
        margin-top: 2rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    #hero {
        min-height: 380px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero h2 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .service,
    .team-member,
    .review,
    .article {
        padding: 15px;
    }

    .article p {
        font-size: 0.9rem;
    }
}

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

/* Focus States for Accessibility */
.cta-button:focus,
.subscribe-form input:focus,
.subscribe-form button:focus {
    outline: 3px solid #74b9ff;
    outline-offset: 2px;
}
