/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-gold: #c9a961;
    --color-dark: #2a2a2a;
    --color-light: #666666;
    --color-bg: #ffffff;
    --color-bg-light: #fafafa;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-light);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: var(--color-bg);
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 50px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-dark);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-gold);
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-rezervasyon {
    padding: 12px 35px;
    background: var(--color-gold);
    color: var(--color-bg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold);
}

.btn-rezervasyon:hover {
    background: transparent;
    color: var(--color-gold);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-bg);
    z-index: 2;
}

.hero-content h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--color-bg);
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-bg);
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-bg);
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.slider-nav.prev {
    left: 40px;
}

.slider-nav.next {
    right: 40px;
}

/* Section Styling */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 2px;
}

/* About Section */
.about-section {
    background: var(--color-bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content .lead {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--color-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--color-light);
}

/* Features Section */
.features-section {
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--color-light);
    line-height: 1.8;
}

/* Menu Section */
.menu-section {
    background: var(--color-bg-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-card {
    background: var(--color-bg);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.menu-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.menu-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 20px;
}

.menu-card p {
    font-size: 1rem;
    color: var(--color-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 60px;
}

.info-group {
    margin-bottom: 40px;
}

.info-group h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.info-group p,
.info-group a {
    font-size: 1.05rem;
    color: var(--color-light);
    text-decoration: none;
    line-height: 1.9;
    transition: color 0.3s ease;
}

.info-group a:hover {
    color: var(--color-gold);
}

.contact-map iframe {
    width: 100%;
    display: block;
    filter: grayscale(0.3);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-bg);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.9;
    opacity: 0.8;
}

.footer a {
    color: var(--color-bg);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-gold);
}

.footer-center,
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    display: flex;
    justify-content: space-around;
    padding: 18px 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 20px;
}

.nav-item:hover {
    color: var(--color-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-wrapper {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }

    .main-nav {
        display: none;
    }

    .btn-rezervasyon {
        padding: 10px 25px;
        font-size: 12px;
    }

    .hero-slider {
        height: 70vh;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-nav.prev {
        left: 20px;
    }

    .slider-nav.next {
        right: 20px;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info .section-header {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .nav-item {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .menu-card {
        padding: 40px 30px;
    }

    .nav-item {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}