/* style.css - Premium Bakery Theme */
:root {
    --bg-dark: #09090b;
    --bg-card: #131316;
    --text-main: #f8f8f8;
    --text-light: #a1a1aa;
    --gold: #d4af37;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --gold-hover: #e5bd3c;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom elegant cursor */
    padding-bottom: 0; /* mobile CTA bar compensation handled in @media */
}

/* Custom Cursor Effects */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

a:hover~.cursor,
button:hover~.cursor,
.gallery-item:hover~.cursor {
    width: 15px;
    height: 15px;
}

a:hover~.cursor-follower,
button:hover~.cursor-follower,
.gallery-item:hover~.cursor-follower {
    width: 60px;
    height: 60px;
    background-color: var(--gold-dim);
    border-color: transparent;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 250px;
    height: auto;
    animation: logoPulse 2s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

@keyframes logoPulse {
    0% {
        opacity: 0.7;
        transform: scale(0.95);
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
    }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    letter-spacing: 5px;
    animation: goldPulse 1.5s infinite alternate;
}

.loader-sub {
    font-size: 1rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 10px;
}

@keyframes goldPulse {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
        text-shadow: 0 0 10px var(--gold-dim);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 20px var(--gold);
    }
}

/* Typography & General Styling */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.w-100 {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 120px 0;
    position: relative;
}

.section-subtitle {
    color: var(--gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.section-desc {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
}

/* Elegant Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    background-color: rgba(212, 175, 55, 0.05);
}

.link-arrow {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    transition: var(--transition);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.link-arrow i {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.link-arrow:hover {
    color: var(--gold-hover);
}

.link-arrow:hover i {
    transform: translateX(8px);
}

/* Glassmorphism Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 5px;
}

.logo span::after {
    content: '.';
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.4s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 32px;
    height: 2px;
    background-color: var(--text-main);
    margin: 6px 0;
    transition: var(--transition);
}

/* Premium Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/2026-02-05.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    transform: scale(1.1);
    /* for animation */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.4) 0%, rgba(9, 9, 11, 0.95) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 950px;
    z-index: 10;
}

.hero .subtitle {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 25px;
    color: var(--gold);
}

.hero .title {
    font-size: 5.5rem;
    margin-bottom: 30px;
    line-height: 1.05;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero .desc {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 45px;
    max-width: 750px;
    margin-inline: auto;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 15px;
    color: var(--text-light);
}

.mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.scroll-indicator:hover .mouse {
    border-color: var(--gold);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Features */
.features {
    background-color: var(--bg-dark);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--gold-dim);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--bg-card);
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.15rem;
}

.about-images {
    position: relative;
    height: 650px;
}

.img-wrapper {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-wrapper:hover img {
    transform: scale(1.08);
}

.img-1 {
    width: 75%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-2 {
    width: 65%;
    height: 65%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 12px solid var(--bg-card);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--bg-dark);
    text-align: center;
    transform: rotate(15deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
    transition: var(--transition);
}

.img-wrapper.img-2:hover .experience-badge {
    transform: rotate(0deg) scale(1.05);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Menu Section */
.menu {
    background: var(--bg-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.menu-item {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.menu-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item:hover .menu-img img {
    transform: scale(1.12);
}

.menu-img .price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(5px);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(19, 19, 22, 1) 0%, rgba(19, 19, 22, 0) 50%);
}

.menu-info {
    padding: 30px;
}

.menu-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-main);
    transition: var(--transition);
}

.menu-item:hover .menu-info h3 {
    color: var(--gold);
}

.menu-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Parallax Divider */
.parallax-divider {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../images/unnamed%20%284%29.webp');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(9, 9, 11, 0.8), rgba(9, 9, 11, 0.9));
}

.parallax-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.parallax-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery - Placeholder styling */
.gallery {
    background: var(--bg-card);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 20px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-list {
    margin-top: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item .icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .icon {
    background: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.info-item h5 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.info-item p,
.info-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
}

.info-item a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Premium Form */
.contact-form-container {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.contact-form h3 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* Arrow for select */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-main);
}

/* Footer */
footer {
    background: #060607;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-size: 2.8rem;
    color: var(--text-main);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-light);
    max-width: 400px;
    font-size: 1.05rem;
}

.footer-links h3,
.footer-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
}

.footer-links li,
.footer-hours li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-hours li {
    color: var(--text-main);
    font-size: 1.05rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }

    .hero .title {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {

    .features-grid,
    .menu-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 550px;
        order: -1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero .title {
        font-size: 3.5rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .navbar {
        padding: 20px;
    }

    .logo span {
        font-size: 1.8rem;
    }

    .nav-active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(15px);
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 35px;
    }

    .nav-active a {
        font-size: 1.5rem;
    }

    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold);
    }

    .features-grid,
    .menu-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    /* Mobile body padding for sticky CTA bar */
    body {
        padding-bottom: 70px;
    }
}

/* ===================================================
   MOBILE STICKY PHONE CTA BAR
   =================================================== */
.mobile-cta-bar {
    display: none; /* desktop'ta gizli */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
    background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.mobile-cta-call i {
    font-size: 1.1rem;
    animation: phonePulse 1.5s infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(0deg); }
}

.mobile-cta-call:active {
    background: linear-gradient(135deg, #b8962e 0%, #96711f 100%);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
}

/* ===================================================
   SEO CONTENT SECTION
   =================================================== */
.seo-section {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.seo-text-block .section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.seo-text-block p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.seo-text-block strong {
    color: var(--text-main);
}

.seo-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 28px 30px;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.seo-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: linear-gradient(145deg, rgba(212,175,55,0.05) 0%, rgba(255,255,255,0.01) 100%);
    transform: translateX(8px);
}

.seo-card i {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.seo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.seo-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.seo-card a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.seo-card a:hover {
    color: var(--gold-hover);
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .seo-text-block .section-title {
        font-size: 2.2rem;
    }
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq-section {
    background: var(--bg-card);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 18px;
}

/* ===================================================
   BLOG HUB PAGE STYLES
   =================================================== */
.blog-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.blog-hero .section-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.blog-hero p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    background: var(--bg-card);
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: rgba(212, 175, 55, 0.08);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold);
}

.blog-card-img-placeholder i {
    font-size: 3rem;
    opacity: 0.6;
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    line-height: 1.3;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--gold);
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.blog-card-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-meta i {
    color: var(--gold);
}

.blog-card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--gold-hover);
    gap: 14px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-hero .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero .section-title {
        font-size: 2.2rem;
    }
    .blog-hero {
        padding: 130px 0 60px;
    }
}

/* ===================================================
   BLOG ARTICLE PAGE STYLES
   =================================================== */
.article-hero {
    padding: 150px 0 60px;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.article-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: var(--gold-hover);
}

.article-breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-light);
}

.article-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
    display: block;
    font-family: var(--font-body);
}

.article-hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    max-width: 800px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--gold);
}

.article-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    margin: 50px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.article-body {
    background: var(--bg-card);
    padding: 80px 0 100px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 70px;
    align-items: start;
}

.article-content h2 {
    font-size: 2rem;
    margin: 45px 0 18px;
    color: var(--text-main);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 14px;
    color: var(--gold);
}

.article-content p {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-content strong {
    color: var(--text-main);
}

.article-content ul, .article-content ol {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-content ul li, .article-content ol li {
    margin-bottom: 8px;
}

.article-content .highlight-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.04) 100%);
    border: 1px solid rgba(212,175,55,0.25);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 24px 28px;
    margin: 35px 0;
}

.article-content .highlight-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-main);
    font-style: italic;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
}

.sidebar-widget ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.sidebar-widget ul li a i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.sidebar-widget ul li a:hover {
    color: var(--gold);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
    border: none;
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--bg-dark);
    border-bottom-color: rgba(0,0,0,0.15);
}

.sidebar-cta p {
    color: rgba(9,9,11,0.75);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.sidebar-cta .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-dark);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sidebar-cta .btn-dark:hover {
    background: rgba(9,9,11,0.8);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
    .article-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2rem;
    }
    .article-hero {
        padding: 120px 0 40px;
    }
    .article-content h2 {
        font-size: 1.6rem;
    }
}