/* Ala Kasap Site CSS */

/* Genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 50vh;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: left;
}

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

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

.hero-text {
    color: white;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: #f8f8f8;
}

.cta-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 0 5%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 5%;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
}

/* About Us Section */
.about {
    background-color: #FFF9F3;
    padding: 5rem 2rem;
}

/* Section Separator */
.section-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(220, 53, 69, 0.3) 50%, 
        transparent 100%
    );
    margin: 0;
    position: relative;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    border-radius: 50%;
    opacity: 0.1;
}

.section-separator::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #dc3545;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    color: #333;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Responsive About */
@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2rem 1rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
}


/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, #FFF9F3 0%, #FFFFFF 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-us-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.why-us-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 4rem;
    font-weight: 300;
}

.why-us-hero {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.15);
}

.why-us-hero img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-us-hero:hover img {
    transform: scale(1.02);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.feature-icon svg {
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg {
    transform: rotateY(-180deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Why Us Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 3rem 1rem;
    }
    
    .why-us-title {
        font-size: 2rem;
    }
    
    .why-us-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding: 2rem 1rem;
    }
    
    .why-us-title {
        font-size: 1.8rem;
    }
    
    .why-us-subtitle {
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Contact Section */
.contact {
    background-color: #7A1C1C;
    padding: 40px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 20px auto 0;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-icon {
    color: #dc3545;
    background-color: #fff5f5;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.contact-text {
    flex: 1;
    color: #333;
    line-height: 1.6;
}

.contact-text strong {
    color: #1a1a1a;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.call-button {
    display: inline-block;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    text-align: center;
}

.call-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: none;
}

.contact-map-logo {
    background: #7A1C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    margin-top: 3rem;
}

.contact-map-logo img {
    max-width: 300px;
    height: auto;
    display: block;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact {
        padding: 30px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
    
    .contact-map iframe {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .call-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Header stilleri */
header {
    background-color: #f4f4f4;
    padding: 1rem;
    text-align: center;
}

/* Main stilleri */
main {
    padding: 2rem;
    min-height: 60vh;
}

/* QR Note Style */
.qr-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* Main Footer */
.main-footer {
    background-color: #111;
    color: white;
    padding: 30px 20px;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    display: inline-block;
    filter: brightness(0) invert(1); /* Logoyu beyaz yapar */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-content .copyright {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-content .tagline {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 25px 15px;
    }
    
    .footer-content .copyright {
        font-size: 0.9rem;
    }
    
    .footer-content .tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 20px 15px;
    }
    
    .footer-content .copyright {
        font-size: 0.85rem;
    }
    
    .footer-content .tagline {
        font-size: 0.75rem;
    }
}
    
