/* ================================
   CSS Variables
   ================================ */
:root {
    /* Colors - Turkish/Gyro Theme */
    --primary-color: #c41e3a;
    --primary-dark: #9e1730;
    --primary-light: #d63f56;
    --secondary-color: #ffd700;
    --secondary-dark: #ccac00;

    /* Neutral Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c2c2c;

    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-green: #4caf50;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ================================
   Reset & Base Styles
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ================================
   Utility Classes
   ================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.navbar__brand {
    display: flex;
    flex-direction: column;
}

.navbar__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.navbar__subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar__link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-image: url('http://t2.gstatic.com/images?q=tbn:ANd9GcRzhP6xsd3NbqpYNvHvxXUhQV8T60GtT-Rh85mexpy8is91HVMN');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.85) 0%, rgba(44, 44, 44, 0.75) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.5rem;
    color: #ddd;
}

.star.filled {
    color: var(--secondary-color);
}

.star.partial {
    position: relative;
    color: #ddd;
}

.star.partial::before {
    content: '★';
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    overflow: hidden;
    color: var(--secondary-color);
}

.hero__rating-text {
    font-size: 1.125rem;
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background: var(--secondary-color);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn--primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn--secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--bg-white);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

/* ================================
   About Section
   ================================ */
.about__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about__heading {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.about__features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature__content h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.feature__content p {
    color: var(--text-secondary);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.stat {
    text-align: center;
    color: var(--bg-white);
}

.stat__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat__label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ================================
   Services Section
   ================================ */
.services {
    background: var(--bg-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.service-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card__description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-card__features {
    text-align: left;
}

.service-card__features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* ================================
   Gallery Section
   ================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px var(--shadow-light);
}

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

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--bg-white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 20px;
    border-radius: 5px;
    transition: var(--transition-fast);
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-white);
    font-size: 1.125rem;
}

/* ================================
   Reviews Section
   ================================ */
.reviews {
    background: var(--bg-light);
}

.reviews__summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.reviews__score {
    text-align: center;
}

.reviews__score-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.reviews__stars {
    margin-bottom: 10px;
}

.reviews__count {
    color: var(--text-secondary);
    font-size: 1rem;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-bar__label {
    min-width: 40px;
    font-weight: 600;
    color: var(--text-primary);
}

.rating-bar__track {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
    transition: var(--transition-normal);
}

.rating-bar__count {
    min-width: 40px;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.reviews__carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-card__stars {
    display: flex;
    gap: 3px;
}

.review-card__date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-card__text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-card__ratings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.review-rating {
    text-align: center;
}

.review-rating__label {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 3px;
}

.review-rating__value {
    font-weight: 600;
    color: var(--primary-color);
}

/* ================================
   Opening Hours Section
   ================================ */
.hours__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hours__schedule {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours__day:last-child {
    border-bottom: none;
}

.hours__day-name {
    font-weight: 600;
    color: var(--text-primary);
}

.hours__day-time {
    color: var(--text-secondary);
}

.hours__info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px;
    border-radius: 15px;
    color: var(--bg-white);
}

.hours__info-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 25px;
}

.hours__info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hours__info-item:last-child {
    margin-bottom: 0;
}

.hours__info-icon {
    font-size: 1.5rem;
}

.hours__info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.hours__info-item p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ================================
   Contact Section
   ================================ */
.contact {
    background: var(--bg-light);
}

.contact__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: var(--transition-normal);
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.contact__card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact__card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact__card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact__card-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact__card-text a:hover {
    text-decoration: underline;
}

.contact__card-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact__card-link:hover {
    color: var(--primary-dark);
}

.contact__card-description {
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact__map {
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.payment-badge {
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact__features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.feature-badge {
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px var(--shadow-light);
}

.feature-badge__icon {
    font-size: 1.25rem;
}

.feature-badge__text {
    font-weight: 500;
    color: var(--text-primary);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer__description {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__heading {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer__links li,
.footer__contact li {
    padding: 8px 0;
    opacity: 0.9;
}

.footer__links a:hover {
    color: var(--secondary-color);
}

.footer__contact a {
    color: var(--secondary-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.footer__credit {
    margin-top: 10px;
    font-size: 0.875rem;
}

/* ================================
   Scroll to Top Button
   ================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Media Queries
   ================================ */

/* Tablet */
@media (max-width: 1023px) {
    :root {
        --section-padding: 80px 0;
    }

    .navbar__menu {
        gap: 1.5rem;
    }

    .hero {
        min-height: 500px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px var(--shadow-light);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

    .lightbox__prev,
    .lightbox__next {
        font-size: 2rem;
        padding: 10px;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }
}

/* Small Mobile */
@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .contact__card,
    .hours__schedule,
    .hours__info {
        padding: 25px 20px;
    }

    .reviews__summary {
        padding: 25px 20px;
    }

    .review-card {
        padding: 20px;
    }
}