/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;600&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --dark: #1a1a1a;
    --grey: #f9f9f9;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid var(--gold);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Resmi karartır ki yazı okunsun */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #b48811);
    color: #fff;
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.5s;
}

.btn-gold:hover {
    background: #1a1a1a;
    color: var(--gold);
}

/* Zigzag Layout (Sağ-Sol) */
.product-row {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.product-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.product-img-wrapper {
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.product-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 1s;
}

.product-row:hover .product-img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #fff;
    border-top: 5px solid var(--gold);
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    color: var(--gold);
}