/* Bahattin Usta Döner - Design System */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-green: #00534C;
    /* Pantone 330 C */
    --secondary-beige: #F8CFA9;
    /* Pantone 2015 C */
    --bg-dark: #003D37;
    --text-on-green: #F8CFA9;
    --text-on-beige: #00534C;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-on-green);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

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

section {
    padding: 150px 0;
    /* Even more airy */
}

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

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

nav ul li a {
    color: var(--secondary-beige);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    transition: var(--transition);
}

nav ul li a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 83, 76, 0.9), rgba(0, 61, 55, 0.95)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-logo-img {
    width: 280px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary-beige);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Content Sections */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: var(--secondary-beige);
    text-transform: uppercase;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--secondary-beige);
    margin-bottom: 20px;
}

/* Gallery */
#galeri {
    background-color: #004a44;
    /* Subtle background change */
    position: relative;
}

#galeri::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-beige), transparent);
    opacity: 0.3;
}

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

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--secondary-beige);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Location Section */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.location-info h3 {
    color: var(--secondary-beige);
    font-size: 2rem;
    margin-bottom: 15px;
}

.location-info p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.location-map {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
}

/* Contact Form */
.contact-container {
    background-color: var(--secondary-beige);
    color: var(--text-on-beige);
    padding: 60px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 40px;
}

form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
}

input,
textarea {
    padding: 12px;
    border: 1px solid var(--primary-green);
    border-radius: 5px;
    font-family: inherit;
    background: transparent;
    color: var(--primary-green);
}

input::placeholder,
textarea::placeholder {
    color: rgba(0, 83, 76, 0.5);
}

button {
    background-color: var(--primary-green);
    color: var(--secondary-beige);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-top: 10px;
}

button:hover {
    background-color: #003D37;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 80px 0;
    background-color: #002621;
    text-align: center;
    border-top: 1px solid rgba(248, 207, 169, 0.1);
}

footer p {
    color: var(--secondary-beige);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        position: relative;
        padding: 30px 0;
        background-color: var(--bg-dark);
        border-bottom: 1px solid rgba(248, 207, 169, 0.1);
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .logo img {
        height: 45px;
        width: auto;
        max-width: 100%;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 20px;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
    }

    .hero-logo-img {
        width: 180px;
        max-width: 80%;
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 1.8rem !important;
        text-align: center;
        line-height: 1.3;
    }

    .about-text p {
        text-align: center;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .location-info h3 {
        font-size: 1.8rem;
    }

    .contact-container {
        padding: 40px 20px;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-text,
.about-image,
.gallery-item {
    animation: fadeInUp 1s ease-out forwards;
}

.nav-wrapper a:hover {
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}