/* =========================
   1. Root Variables & Reset
   ========================= */
:root {
  /* Ana Renkler */
  --color-gold: #BC8C47;
  --color-dark-gold: #8C6A33;
  --color-bright-gold: #D4A857;
  --color-black-matte: #1E1E1E;
  --color-dark-gray: #2B2B2B;
  /* Yardımcı Renkler */
  --color-light-gray: #B3B3B3;
  --color-off-white: #F5F5F5;
  /* Aksiyon Renkleri */
  --color-neutral-red: #8B3A3A;
  --color-neutral-green: #3A8B3A;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   2. Base Styles
   ========================= */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-off-white);
    background-color: var(--color-black-matte);
}
h1, h2, h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}
h1, h2, h3, h4, h5, h6, .nav-links a, .cta-button {
    font-family: 'Cinzel', serif, Arial, sans-serif;
}

/* =========================
   3. Layout
   ========================= */
header {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
}
main {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}
section {
    margin-bottom: 3rem;
}
footer {
    background-color: var(--color-dark-gold);
    color: var(--color-off-white);
    padding: 2rem 1rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* =========================
   4. Typography & Logo
   ========================= */
.logo-wrapper {
    display: flex;
    flex-direction: column;
}
.logo {
    color: var(--color-gold);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
}
.logo-sub {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--color-off-white);
    letter-spacing: 0.1em;
    text-align: left;
    text-transform: uppercase;
}
.hero-logo {
    max-width: 210px;
    height: auto;
    margin-bottom: 1rem;
}
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

/* =========================
   5. Components
   ========================= */
/* Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    flex-direction: row;
}
.nav-links a {
    color: var(--color-off-white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--color-gold);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-dark-gold);
    color: var(--color-off-white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: var(--color-gold);
}
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Grid & Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.product-card {
    background: var(--color-dark-gray);
    padding: 1rem;
    text-align: center;
}
.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}
.product-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--color-off-white);
}

/* Features & Feature Cards */
.features-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card, .product-card {
    background: var(--color-black-matte);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(188, 140, 71, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}
.feature-card:hover, .product-card:hover {
    transform: translateY(-5px);
}
.feature-card h3, .product-card h3 {
    color: var(--color-bright-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Product Features */
.product-features {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-light-gray);
}
.product-features ul {
    list-style: none;
    padding: 0;
}
.product-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.product-features li:before {
    content: "\2022";
    color: var(--color-bright-gold);
    position: absolute;
    left: 0;
}

/* Contact Form */
.contact-form {
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1rem;
    min-width: 400px;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-light-gray);
    background: var(--color-dark-gray);
    color: var(--color-off-white);
}

/* Footer Section */
.footer-section .company-name {
    color: var(--color-bright-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}
.footer-section p {
    color: var(--color-off-white);
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    color: var(--color-off-white);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-bright-gold);
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Styles */
.section, .product-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section:nth-child(even), .product-section:nth-child(even) {
    background-color: var(--color-dark-gray);
}
.section h2, .product-section h2 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    text-align: center;
}
.section p, .product-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-off-white);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--color-gold);
    color: var(--color-off-white);
}
.cta-section h2 {
    color: var(--color-off-white);
    margin-bottom: 2rem;
}

/* Contact Row */
.contact-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

/* =========================
   6. Responsive / Media Queries
   ========================= */
@media (max-width: 1200px) {
    .features {
        flex-direction: column;
        max-width: 500px;
    }
    .feature {
        width: 100%;
    }
}
@media (max-width: 900px) {
    .contact-row {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
}
@media (max-width: 768px) {
    .logo-wrapper {
        margin-bottom: 1rem;
        align-items: center;
    }
    .nav-links {
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    nav {
        flex-direction: column;
        align-items: center;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero, .section, .product-section, footer {
        padding: 2rem 1rem;
    }
    .features-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
    }
} 