/* ========== style.css ========== */
/* Tüm sayfalarda ortak kullanılacak stiller */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2d2d2d;
    background-color: #fcf9f7;
    line-height: 1.6;
}

/* Premium Renk Paleti */
:root {
    --gold: #c8a27b;
    --gold-light: #e5d5c5;
    --gold-dark: #a67c5b;
    --cream: #faf3eb;
    --charcoal: #2c3e50;
    --white: #ffffff;
    --gray-light: #f5f0eb;
    --gray: #7f8c8d;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #1e2a36 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 2rem;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
    font-size: 0.9rem;
    display: block;
    font-weight: 300;
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

/* ===== BUTONLAR ===== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(200, 162, 123, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 162, 123, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1e2a36 0%, #2c3e50 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--gold);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p, .footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}