/* ========== CSS Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --dark-bg: #0f0f0f;
    --deep-navy: #1a1a2e;
    --light-gold: #e6c55a;
    --dark-text: #d4af37;
    --accent-gold: #d4af37;
    --shadow-dark: rgba(15, 15, 15, 0.5);
    --gradient-bg: linear-gradient(135deg, var(--dark-bg) 0%, var(--deep-navy) 100%);
    --text-secondary: rgba(212, 175, 55, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-gold);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* ========== Header & Navigation ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--deep-navy);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

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

.nav-links a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
}

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

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

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

/* ========== Hero Section ========== */
.hero {
    background: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/uzaktan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, transparent 50%, var(--deep-navy) 100%);
    opacity: 0.8;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-text {
    color: var(--primary-gold);
    max-width: 800px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-gold);
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--text-secondary);
}

.hero-image {
    display: none; /* Artık ayrı görsel kullanmıyoruz */
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== Story Section ========== */
.story {
    padding: 120px 0;
    background: var(--deep-navy);
    position: relative;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-style: italic;
}

.story-text p {
    margin-bottom: 1.8rem;
}

.story-conclusion {
    font-weight: 500;
    color: var(--primary-gold);
    font-size: 1.2rem;
    opacity: 1;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.ornamental-frame {
    position: relative;
    padding: 20px;
    border: 3px solid var(--primary-gold);
    border-radius: 10px;
    background: var(--dark-bg);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.ornamental-frame:hover {
    transform: rotate(0deg);
}

.ornamental-frame img {
    max-width: 250px;
    width: 100%;
    border-radius: 5px;
    filter: sepia(20%) saturate(1.2);
}

/* ========== Aroma Section ========== */
.aroma {
    padding: 120px 0;
    background: var(--dark-bg);
    color: var(--primary-gold);
}

.aroma .section-title {
    color: var(--primary-gold);
}

.aroma-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.note-card {
    background: var(--deep-navy);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.note-card:hover {
    transform: translateY(-10px);
    background: var(--deep-navy);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.note-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.note-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.note-card p {
    line-height: 1.7;
    opacity: 0.8;
    color: var(--text-secondary);
}

/* ========== Product Highlight Section ========== */
.product-highlight {
    padding: 120px 0;
    background: var(--deep-navy);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.highlight-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.highlight-card p {
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ========== CTA Section ========== */
.cta {
    padding: 100px 0;
    background: var(--dark-bg);
    text-align: center;
    color: var(--primary-gold);
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ========== Footer ========== */
.footer {
    background: var(--deep-navy);
    padding: 3rem 0;
    text-align: center;
    color: var(--primary-gold);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-text {
    opacity: 0.8;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .highlight-grid,
    .aroma-notes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .note-card,
    .highlight-card {
        padding: 2rem;
    }
}