/* Global Değişkenler */
:root {
    --primary-blue: #051937; /* Daha derin, keskin lacivert */
    --secondary-blue: #004d7a;
    --accent-gold: #c5a059;
    --islamic-brown: #5d4037; /* İslami karakteri yansıtan kahverengi */
    --light-brown: #8d6e63;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Temel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Header & Navigasyon */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-text span {
    color: var(--accent-gold);
}

.nav-logo-img {
    height: 45px;
    width: auto;
    border-radius: 5px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-blue);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(5, 25, 55, 0.75), rgba(93, 64, 55, 0.6)), url('banner.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--pure-white));
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--pure-white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: #b08d4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Section Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

/* Kurban Süreci Section */
.about-process {
    padding: 100px 0;
    background-color: var(--pure-white);
}

.process-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.process-row.reverse {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
}

.process-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(5, 25, 55, 0.15);
}

.process-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.process-image:hover img {
    transform: scale(1.05);
}

.process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.process-icon {
    background-color: var(--off-white);
    color: var(--islamic-brown);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-item:hover .process-icon {
    background-color: var(--primary-blue);
    color: var(--pure-white);
    transform: rotate(10deg);
}

.process-text h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.process-text p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* Kurbanımı Nasıl Keserim Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--off-white);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.how-card {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2); /* Altın sarısı parlama */
    border-color: var(--accent-gold);
}


.how-icon {
    width: 80px;
    height: 80px;
    background-color: var(--off-white);
    color: var(--islamic-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
    overflow: hidden;
}

.how-img-icon {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.how-card:hover .how-icon {
    background-color: var(--primary-blue);
    color: var(--pure-white);
}

.how-card:hover .how-img-icon {
    filter: brightness(0) invert(1);
}

.how-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.how-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Footer Düzenlemeleri */
footer {
    background-color: var(--primary-blue);
    color: var(--pure-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-col.centered {
    max-width: 800px;
}

.footer-col .logo {
    color: var(--pure-white);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-contact-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-contact-info p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: var(--pure-white);
    opacity: 0.8;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Özellikler / İslami Usuller */
.features {
    padding: 80px 0;
    background-color: var(--off-white);
}

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

.feature-card {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(5, 25, 55, 0.1);
}

.feature-card i {
    font-size: 50px;
    color: var(--islamic-brown);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* Galeri Section */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 25, 55, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--pure-white);
    font-size: 2rem;
}

/* Sıkça Sorulan Sorular (Accordion) */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--off-white);
}

.faq-answer p {
    padding: 20px 0;
    color: var(--light-text);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--pure-white);
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    color: var(--pure-white);
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-nav ul li a:hover {
    color: var(--accent-gold);
}

/* Modal (Lightbox) Görsel Açılması */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 95%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links li {
        margin-left: 15px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-logo-img {
        height: 40px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--primary-blue);
    }

    .process-row, .process-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-image img {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 18px;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--primary-blue);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .process-image img {
        height: 250px;
    }
}

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .how-card, .feature-card {
        padding: 30px 20px;
    }
}
