/* CSS Değişkenleri - Renk Paleti */
:root {
    --primary-color: #8B0000;      /* Koyu bordo */
    --secondary-color: #DC143C;    /* Vişne çürüğü */
    --accent-color: #FFD700;       /* Altın sarısı */
    --text-light: #FFFFFF;         /* Beyaz */
    --text-dark: #2C1810;          /* Koyu kahve */
    --bg-light: #FFF8F0;           /* Krem */
    --bg-dark: #4A0E0E;            /* Çok koyu bordo */
    --border-color: #B8860B;       /* Koyu altın */
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

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

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.hero-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 20s ease-in-out infinite;
    border-radius: 0;
    box-shadow: none;
}

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

.hero::before {
    display: none;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pagination {
    bottom: 20px !important;
    z-index: 5;
}

.hero-pagination .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
    width: 10px;
    height: 10px;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* About Section */
.about {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    grid-template-areas: 
        "image text";
}

.about-image {
    position: relative;
    grid-area: image;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-text {
    grid-area: text;
    margin-top: 25rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-description p {
    margin-bottom: 1rem;
}

/* Divider Section */
.divider-section {
    padding: 40px 0;
    background: #ffffff;
}

.divider-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.divider-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.divider-social {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.divider-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.divider-social a:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.gallery-description {
    max-width: 300px;
    text-align: right;
}

.gallery-description p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}


.gallery-slider {
    position: relative;
    margin-bottom: 2.5rem;
}

.gallerySwiper {
    padding: 0 60px;
}

.gallerySwiper .swiper-wrapper {
    align-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 350px;
    height: 450px;
    margin: 0 auto;
}

.gallerySwiper .swiper-slide {
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.gallerySwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.gallerySwiper .swiper-slide-active .gallery-item {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

.gallery-nav {
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-nav:hover {
    color: #2c2c2c;
    transform: scale(1.2);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.gallery-nav::after {
    display: none;
}

/* Swiper button override */
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 2rem !important;
    padding: 10px !important;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    color: #2c2c2c !important;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.2) !important;
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
    display: none !important;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

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

.gallery-description {
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--primary-color);
    color: var(--text-light);
}

.video-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.video-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 18px;
    font-size: 0.9rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.4rem;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--accent-color);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    height: 180px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--bg-dark);
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-text {
        height: 25px;
    }
    
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        grid-template-areas: 
            "image"
            "text";
    }
    
    .about-image {
        grid-area: image;
    }
    
    .about-text {
        grid-area: text;
        margin-top: 1.5rem;
    }
    
    .about-text .section-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .about-image img {
        height: 500px;
    }
    
    .divider-section {
        padding: 30px 0;
    }
    
    .divider-logo img {
        width: 60px;
        height: 60px;
    }
    
    .divider-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .gallery-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-track {
        animation: none;
        width: auto;
        gap: 1rem;
    }
    
    .gallery-item {
        width: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .gallery-description {
        max-width: 100%;
        text-align: center;
    }
    
    .gallery-description p {
        font-size: 0.8rem;
    }
    
    .gallerySwiper {
        padding: 0 50px;
    }
    
    .gallery-item {
        width: 280px;
        height: 380px;
    }
    
    .gallery-nav {
        font-size: 1.5rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        height: 20px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .about, .gallery, .video-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-areas: 
            "image"
            "text";
    }
    
    .about-image {
        grid-area: image;
    }
    
    .about-text {
        grid-area: text;
        margin-top: 1.5rem;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .divider-section {
        padding: 25px 0;
    }
    
    .divider-content {
        flex-direction: row;
        gap: 0;
        padding-bottom: 15px;
    }
    
    .divider-logo img {
        width: 50px;
        height: 50px;
    }
    
    .divider-social {
        flex-direction: row;
        gap: 15px;
    }
    
    .divider-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gallerySwiper {
        padding: 0 40px;
    }
    
    .gallery-item {
        width: 220px;
        height: 300px;
    }
    
    .gallery-nav {
        font-size: 1.2rem;
    }
    
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
