/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #D4D4D4; 
    --dark-gray: #333333;
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --text-dark: #2C2C2C;
    
    /* Yeni Renk Paleti - Lüks ve Huzur Veren Tonlar (Daha Yoğun) */
    --cream: #E8DCC8;          /* Daha yoğun krem */
    --lavender: #D4C5E8;       /* Daha belirgin lavanta */
    --soft-blue: #C8E0F0;      /* Daha canlı mavi */
    --warm-beige: #E0D4C0;    /* Daha sıcak bej */
    --sage-green: #D0E8D0;    /* Daha belirgin yeşil */
    --deep-purple: #6B5B95;   /* Derin mor - lüks vurgu */
    --soft-pink: #E8D0D8;     /* Daha belirgin pembe */
    --navy-blue: #2C3E50;     /* Lacivert - profesyonel */
    --burgundy: #8B4A5C;      /* Bordo - lüks accent */
    --warm-gray: #E8E8E8;     /* Sıcak gri - nötr ton */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent text size adjustment on iOS */
* {
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    min-height: 44px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 50%, var(--deep-purple) 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 50%, var(--deep-purple) 100%);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 50%, var(--deep-purple) 100%);
}

/* Hero Section */
.hero-section {
    height: calc(100vh - 70px);
    background: url('images/on_kapak3.png');
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-cta {
    display: inline-block;
    padding: 15px 45px;
    background: var(--gold);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    min-height: 44px;
    min-width: 120px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--deep-purple) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 91, 149, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-section {
    padding: 150px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-blue) 50%, var(--lavender) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--deep-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 91, 149, 0.2);
    border: 2px solid var(--deep-purple);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    padding: 12px 30px;
    background: var(--gold);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.btn-view:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--deep-purple) 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(107, 91, 149, 0.5);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-category {
    color: var(--gold);
    font-weight: 500;
}

/* About Section */
.about-section2 {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream) 50%, var(--primary-white) 100%);
}

.about-content2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text2 {
    padding: 2rem;
}

.about-text2 p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.about-image2 img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-section {
    padding: 100px 20px;
    background: var(--primary-white);
}

.about-image {
    width: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.about-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--lavender) 50%, var(--cream) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item { 
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.3rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--dark-gray);
}

.contact-form {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--cream);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--primary-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-dark);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--text-dark) 100%);
    color: var(--primary-white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        transform: scale(1.1);
    }


    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--cream) 0%, var(--soft-blue) 30%, var(--lavender) 60%, var(--soft-pink) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(107, 91, 149, 0.4);
        padding: 1.5rem 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-dark);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
        position: relative;
        margin: 0 10px;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: linear-gradient(90deg, rgba(212, 175, 55, 0.25) 0%, rgba(107, 91, 149, 0.25) 100%);
        color: var(--deep-purple);
        transform: translateX(5px);
        box-shadow: 0 2px 8px rgba(107, 91, 149, 0.3);
    }

    .nav-link:active {
        background: linear-gradient(90deg, var(--gold) 0%, var(--deep-purple) 100%);
        color: var(--primary-white);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none; /* Mobilde alt çizgiyi kaldır */
    }

    /* Menü açılış animasyonu */
    .nav-menu.active .nav-link {
        animation: slideInLeft 0.3s ease forwards;
        opacity: 0;
    }

    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .navbar-container {
        padding: 0.75rem 15px;
    }

    /* Hero Section Mobile */
    .hero-section {
        height: auto;
        min-height: 50vh;
        margin-top: 60px;
        padding: 20px 0;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-content {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .btn-cta {
        padding: 12px 35px;
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    /* Products Section Mobile */
    .products-section {
        padding: 20px 15px 40px 15px;
        margin-top: 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .product-info .product-category {
        font-size: 0.85rem;
    }

    .product-card:hover {
        transform: none;
    }

    .product-overlay {
        opacity: 1;
    }

    /* About Section Mobile */
    .about-section {
        padding: 0;
    }

    .about-section2 {
        padding: 60px 15px;
    }

    .about-content,
    .about-content2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text,
    .about-text2 {
        padding: 1rem;
    }

    .about-text p,
    .about-text2 p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-image {
        margin: 0;
    }

    .about-image img {
        border-radius: 0;
        margin: 0;
    }

    .about-image2 img {
        margin-top: 1rem;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }

    .contact-item i {
        font-size: 1.25rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-submit {
        padding: 14px;
        font-size: 1rem;
        min-height: 48px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section ul li {
        margin-bottom: 0.4rem;
    }

    .footer-section a {
        font-size: 0.95rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: 40vh;
        padding: 15px 0;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .product-image {
        height: 180px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-info {
        padding: 0.875rem;
    }

    .product-info h3 {
        font-size: 0.95rem;
    }

    .products-section {
        padding: 15px 10px 30px 10px;
        margin-top: 0;
    }

    .container {
        padding: 0 10px;
    }
}

