/* Design Tokens & Theme Setup */
:root {
    --primary-color: #2E4C3E;       /* Deep botanical green */
    --primary-hover: #1F362C;
    --primary-light: #F0F4F2;       /* Soft green-cream */
    --accent-color: #C5A059;        /* Zarif Muted Gold */
    --accent-hover: #B08E4A;
    --bg-cream: #FAF7F2;            /* Luxurious Warm Cream */
    --text-dark: #1E2B24;           /* Deep elegant charcoal-green */
    --text-light: #7E8E85;          /* Soft grey-green */
    --white: #FFFFFF;
    
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20BA5A;
    --phone-color: #C5A059;
    --phone-hover: #B08E4A;
    
    --success-color: #2E7D32;
    --error-color: #C62828;

    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-subtle: 0 4px 20px rgba(46, 76, 62, 0.05);
    --shadow-medium: 0 10px 30px rgba(46, 76, 62, 0.08);
    --shadow-premium: 0 20px 40px rgba(46, 76, 62, 0.12);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button, input, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-phone {
    background-color: var(--phone-color);
    color: var(--white);
}

.btn-phone:hover {
    background-color: var(--phone-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.85); /* Glassmorphism background matching page body */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 76, 62, 0.08);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow-subtle);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.5px;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    background: transparent;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: url('images/hero-bg.png') no-repeat center center/cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 40, 33, 0.85) 0%, rgba(46, 76, 62, 0.45) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-actions-group .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero-actions-group .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Features / Trust Section */
.features-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    margin-top: -40px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    z-index: 5;
    box-shadow: var(--shadow-medium);
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-md);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Product Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-buttons {
    background-color: var(--white);
    padding: 6px;
    border-radius: var(--border-radius-full);
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-subtle);
}

.filter-btn {
    background: transparent;
    color: var(--text-light);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-product-order {
    background-color: var(--whatsapp-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-product-order:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-img-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-medium);
}

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

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-badges {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.about-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Contact & Location Section */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-info-block {
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 3px;
}

.info-item h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.map-container {
    margin-top: 40px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    height: 280px;
}

.map-container iframe {
    height: 100%;
    width: 100%;
    display: block;
}

.contact-form-block {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-block h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(46, 76, 62, 0.2);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-cream);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 76, 62, 0.1);
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: var(--error-color);
    background-color: #FFF8F8;
}

.error-msg {
    font-size: 0.8rem;
    color: var(--error-color);
    display: none;
    margin-top: 2px;
}

.form-group.invalid .error-msg {
    display: block;
}

.form-success-box {
    display: none;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #E8F5E9;
    border-left: 4px solid var(--success-color);
    border-radius: var(--border-radius-md);
    color: var(--success-color);
    margin-top: 10px;
    animation: fadeIn 0.4s ease forwards;
}

.form-success-box i {
    font-size: 1.5rem;
}

.form-success-box h4 {
    margin-bottom: 5px;
}

.form-success-box p {
    font-size: 0.9rem;
    color: #388E3C;
}

/* Footer Section */
.main-footer {
    background-color: #0F1A14;       /* Daha derin, lüks botanik antrasit rengi */
    color: var(--white);
    padding: 90px 0 0;
    border-top: 4px solid var(--accent-color); /* Premium gold üst çizgi */
}

.footer-grid {
    display: grid;                                  /* Grid düzenini etkinleştir */
    grid-template-columns: 2.2fr 1.2fr 1.2fr 1.8fr; /* Profesyonel 4 sütunlu grid yapısı */
    gap: 30px;                                      /* Sütunlar arası boşluk */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--white);
    display: block;
}

.footer-bio {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-right: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.8px;
    color: var(--white);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(6px); /* Profesyonel kayma animasyonu */
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: #09100C; /* Footer alt bandı için daha da koyu renk */
    padding: 30px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries (Responsive Design) */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hamburger-menu {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        transition: var(--transition-smooth);
        padding: 100px 40px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .hamburger-menu.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hide-mobile {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-section {
        padding: 50px 0;
        margin-top: 0;
        border-radius: 0;
    }
    
    .about-img-box {
        height: 320px;
    }
    
    .contact-info-block, .contact-form-block {
        padding: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-actions-group .btn {
        width: 100%;
    }
    
    .filter-buttons {
        flex-direction: column;
        width: 100%;
        border-radius: var(--border-radius-lg);
    }
    
    .filter-btn {
        text-align: center;
        width: 100%;
    }
}
