:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Header ve Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

/* Logo Styles */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.highlight {
    color: var(--primary-color);
}

.subtitle {
    font-size: 0.7rem;
    color: var(--dark-color);
    opacity: 0.8;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-btn {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 50px;
}

.auth-btn:first-child {
    background-color: var(--primary-color);
    color: white;
}

.auth-btn:last-child {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.2);
}

.divider {
    color: var(--dark-color);
    opacity: 0.5;
}

/* Hero Section */
.hero {
    height: 45vh;
    margin-top: 70px;
}

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

.slide-content {
    width: 100%;
    height: 45vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3));
    z-index: 1;
}

.slide-text {
    position: relative;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.slide-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.slide-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Products Section */
.products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    font-family: var(--heading-font);
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: var(--dark-color);
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0 1rem 1rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1rem 1rem;
}

.btn:hover {
    background-color: var(--secondary-color);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:first-child {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-color);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 380px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    z-index: 2001;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal-content {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.modal h2 {
    margin-bottom: 1.8rem;
    color: var(--dark-color);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal form {
    width: 100%;
}

.modal input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.modal input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    outline: none;
}

.modal-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(46, 204, 113, 0.2);
}

.modal-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(46, 204, 113, 0.25);
}

.modal-btn:active {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(0,0,0,0.05);
    border: none;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

/* Modal responsive düzenlemeler */
@media (max-width: 480px) {
    .modal {
        padding: 2rem;
    }

    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .modal input {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .modal-btn {
        padding: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .desktop-auth {
        display: none;
    }

    .nav-links {
        display: block;
        position: fixed;
        top: 50%;
        right: -100%;
        width: 260px;
        height: 400px;
        background: white;
        padding: 2rem 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1001;
        overflow-y: auto;
        transform: translateY(-50%);
        border-radius: 20px 0 0 20px;
    }

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

    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(46, 204, 113, 0.1);
    }

    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
        margin-top: 1rem;
    }

    .mobile-auth .auth-btn {
        width: 100%;
        padding: 12px;
        text-align: center;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mobile-auth .auth-btn:first-child {
        background-color: var(--primary-color);
        color: white;
    }

    .mobile-auth .auth-btn:last-child {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

    .mobile-auth .auth-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(46, 204, 113, 0.2);
    }

    /* Overlay for mobile menu */
    .menu-overlay {
        display: none !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Animation for menu items */
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    /* Mobil menü içeriği için container */
    .mobile-menu-container {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 20px;
    }

    .nav-links ul {
        flex: 1;
        margin-bottom: auto;
    }

    .mobile-auth {
        margin-top: auto;
        padding: 15px;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    /* Küçük ekranlar için ek düzenlemeler */
    @media (max-height: 600px) {
        .nav-links {
            padding-top: 60px;
        }

        .nav-links li {
            margin: 0.8rem 0;
        }

        .mobile-auth {
            padding: 10px 15px;
        }

        .mobile-auth .auth-btn {
            padding: 8px;
        }
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .product-card img {
        height: 180px;
    }

    .slide-text h2 {
        font-size: 1.8rem;
    }
}

/* Scrollbar'ı gizle */
::-webkit-scrollbar {
    display: none;
}

/* Tüm elementler için scrollbar gizleme */
* {
    -ms-overflow-style: none;  /* IE ve Edge için */
    scrollbar-width: none;  /* Firefox için */
}

/* Footer Styles */
footer {
    background: white;
    padding: 3rem 0 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo h3 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.footer-logo p {
    font-size: 0.8rem;
    color: var(--dark-color);
    opacity: 0.8;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    width: 100%;
}

.footer-bottom p {
    color: var(--dark-color);
    opacity: 0.7;
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}

/* Kayar Yazı Styles */
.marquee-container {
    background: var(--primary-color);
    height: 36px;
    overflow: hidden;
    position: relative;
    color: white;
    margin-top: -5px;
    display: flex;
    align-items: center;
}

.marquee {
    white-space: nowrap;
    position: absolute;
    animation: marquee 30s linear infinite;
    display: flex;
    align-items: center;
    height: 36px;
    padding: 0 1rem;
    line-height: 1;
}

.marquee span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    height: 36px;
    line-height: 36px;
}

.marquee span:not(:last-child)::after {
    content: '•';
    margin-left: 1.5rem;
    opacity: 0.7;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hover durumunda animasyonu durdur */
.marquee-container:hover .marquee {
    animation-play-state: paused;
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .marquee span {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
} 