@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
    --primary: #7f563e;
    --primary-dark: #644431;
    --accent: #E6C200;
    --dark: #121212;
    --light: #FDFDFD;
    --cream: #FAF9F6;
    --glass: rgba(18, 18, 18, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Typography */
h1,
h2,
h3,
.brand-font {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    height: 80px;
    border-bottom: 1px solid rgba(127, 86, 62, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

.logo img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

nav.scrolled .logo img {
    height: 60px;
}

.social-links {
    position: absolute;
    left: 5%;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.nav-links {
    position: absolute;
    right: 3%;
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li:not(:last-child)::after {
    content: "";
    height: 15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.nav-blog-link {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.badge-stack {
    background: #fff;
    color: var(--primary) !important;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 800;
    font-size: 0.55rem;
    transform: rotate(-5deg);
    display: block;
    margin-bottom: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.text-stack {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
}

.nav-links li a:hover .badge-stack {
    transform: rotate(0deg) translateY(0px);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary) !important;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    position: absolute;
    right: 5%;
    padding: 10px;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--light);
    border-radius: 2px;
    transition: var(--transition);
}

nav.scrolled .menu-toggle .bar {
    background-color: var(--primary);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0; /* Remove inherited section padding */
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center 35%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: var(--light);
    max-width: 800px;
    padding: 0 40px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2.8rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(127, 86, 62, 0.2);
}

.btn i {
    transition: var(--transition);
}

.btn-contact {
    background: #fff !important;
    color: var(--primary) !important;
    border-radius: 4px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    padding: 10px 30px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    border: none !important;
}

.btn-contact:hover {
    background: #f8f8f8 !important;
    transform: translateY(-2px) !important;
}

/* Sections */
section {
    padding: 100px 10%;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

.about {
    background: #fff;
    padding: 120px 10%;
    position: relative;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(40px);
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 86, 62, 0.15) 0%, transparent 70%);
    animation: float 15s infinite alternate ease-in-out;
}

.shape-2 {
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 194, 0, 0.1) 0%, transparent 70%);
    animation: float 12s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 50px) rotate(5deg); }
    100% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
}

.about-text h3 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: var(--transition-slow);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(127, 86, 62, 0.1);
    border-radius: 30px;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.btn-small {
    padding: 10px 40px !important;
    font-size: 1.1rem !important;
    margin-top: 20px;
}

.features {
    background: #FAF9F6;
    padding: 80px 10%;
}

.features-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text h3 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
}

.features-text p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}

.mini-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.features-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.features-image img {
    width: 100%;
    display: block;
}

/* Custom Ticker Ribbon */
.custom-ticker-ribbon {
    width: 100%;
    background: #7f563e;
    overflow: hidden;
    padding: 20px 0;
    margin: 80px 0;
    position: relative;
    z-index: 5;
    transform: rotate(-1.5deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-ticker-track {
    display: flex;
    width: max-content;
    animation: customTickerLoop 30s linear infinite;
}

.custom-ticker-item {
    padding: 0 50px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes customTickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.menu-gallery {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 80s linear infinite;
}

.gallery-item {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 39 - 20px * 39));
    }
}

.menu-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover::after {
    opacity: 1;
}

/* Ticker Ribbon */
.ticker-container {
    width: 100%;
    background: var(--primary);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    margin: -30px 0;
    transform: rotate(-1.5deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ticker-wrap {
    display: flex;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 80px;
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0.5px;
}

.ticker-move {
    display: flex;
    animation: ticker 40s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact {
    background: var(--dark);
    color: var(--light);
}

.contact .section-title h2 {
    color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Main Footer */
.main-footer {
    background: #0a0e14; /* Very dark blue/black as in screenshot */
    padding: 100px 10% 40px;
    color: var(--light);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.3fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-row {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social-row a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-row a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-col {
    text-align: left;
}

.footer-col h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
    color: var(--light);
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.special-footer-link {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 10px;
    text-decoration: none !important;
}

.special-footer-link .badge {
    background: white;
    color: #7f563e;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 800;
    transform: rotate(-3deg);
    display: inline-block;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.special-footer-link .text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-left: 5px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.special-footer-link:hover .text {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.hours-list span {
    color: var(--light);
    font-weight: 500;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .main-footer {
        padding: 60px 10% 40px;
    }
}

.blog {
    padding: 100px 10%;
    background: #fff;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.blog-badge {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    transform: rotate(-5deg) translateY(-10px);
    margin-bottom: -10px;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-card {
    transition: var(--transition);
    cursor: pointer;
}

.blog-card-image {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-date {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-card-content h4 {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 700;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Footer */
footer {
    padding: 40px 10%;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonials-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollTestimonials 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

.testimonial-card {
    width: 450px;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info h5 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.user-info span {
    color: #888;
    font-size: 0.85rem;
}

/* About Page Specific Styles */
.page-header {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.page-header h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

/* Why Us Section */
.why-us {
    padding: 100px 10%;
    background: var(--cream);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(127, 86, 62, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.why-card:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Premium About Section */
.premium-about {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visuals {
    position: relative;
    padding: 20px;
    height: 600px;
    display: flex;
    align-items: center;
}

.main-img-wrapper {
    position: relative;
    width: 75%;
    z-index: 2;
}

.main-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    top: 50px;
    left: -20px;
    background: var(--primary);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(127, 86, 62, 0.4);
    z-index: 5;
}

.sub-img-wrapper {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 55%;
    z-index: 3;
}

.sub-about-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 12px solid #fff;
}

.experience-badge .years {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.experience-badge .text {
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.about-content-box {
    padding-left: 20px;
}

.top-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.content-header h2 {
    font-size: 3.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 30px;
}

.content-header h2 span {
    color: var(--primary);
    font-style: italic;
}

.lead-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}

.content-body p:not(.lead-text) {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--cream);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.03);
}

.stat-box {
    text-align: center;
}

.stat-box h4 {
    font-size: 2.2rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 1400px) {
    .about-grid-wrapper { gap: 40px; }
    .content-header h2 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .about-grid-wrapper { grid-template-columns: 1fr; }
    .about-visuals { margin-bottom: 60px; justify-content: center; }
    .main-img-wrapper { width: 100%; }
    .sub-img-wrapper { display: block; width: 45%; }
    .experience-badge { left: 20px; top: auto; bottom: -20px; }
    .about-content-box { padding-left: 0; text-align: center; }
}

/* Responsive Update */

/* Menu Page Styles */
.menu-grid-page {
    padding: 80px 0 120px;
    background: #fff;
}

.menu-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px 40px;
    margin-top: 60px;
}

.menu-grid-item {
    position: relative;
}

.menu-img-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.menu-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(127, 86, 62, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 2rem;
}

.menu-img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.menu-img-card:hover img {
    transform: scale(1.1);
}

.menu-img-card:hover .menu-img-overlay {
    opacity: 1;
}

.menu-page-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?auto=format&fit=crop&q=80&w=1600');
}

@media (max-width: 1400px) {
    .menu-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 0 20px;
    }
}

/* Gallery Page Styles */
.gallery-full-page {
    padding: 100px 0;
    background: #fff;
}

.gallery-masonry {
    columns: 3;
    column-gap: 30px;
    margin-top: 60px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 30px;
}

.gallery-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.gallery-img-box img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(127, 86, 62, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-img-box:hover img {
    transform: scale(1.1);
}

.gallery-img-box:hover .gallery-hover {
    opacity: 1;
}

.gallery-page-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&q=80&w=1600');
}

@media (max-width: 1400px) {
    .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
    .gallery-masonry { columns: 1; }
}

/* Blog Page Styles */
.blog-full-page {
    padding: 100px 0;
    background: var(--cream);
}

.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.blog-card-full {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.blog-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-img {
    position: relative;
    height: 280px;
    flex-shrink: 0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.blog-card-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-text h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    flex-grow: 1;
}

.btn-read {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: auto;
}

.btn-read:hover {
    gap: 15px;
}

.blog-page-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?auto=format&fit=crop&q=80&w=1600');
}

@media (max-width: 992px) {
    .blog-main-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .blog-card-img { height: 250px; }
}
@media (max-width: 1400px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        height: 80px;
        padding: 0 5%;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
    }

    .social-links {
        display: flex;
        gap: 1rem;
        left: 3%;
    }

    .logo img {
        height: 60px;
    }

    .about-content-box {
        padding-left: 0;
        text-align: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: 0.5s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        padding: 50px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        justify-content: center;
    }

    .nav-links li:not(:last-child)::after {
        display: none;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .about-grid-wrapper {
        gap: 40px;
    }

    .about-visuals {
        height: 500px;
    }

    .main-about-img {
        height: 400px;
    }

    .sub-about-img {
        height: 250px;
    }
    
    .experience-badge {
        padding: 15px 20px;
        left: -10px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }


    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .gallery-card {
        height: 200px !important;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem !important;
    }
    
    .blog-header h2 {
        font-size: 2.5rem !important;
    }
    
    .testimonial-card {
        width: 300px !important;
        padding: 25px !important;
    }

    .content-header h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 1000px) {
    .about,
    .about-grid-wrapper,
    .why-us-grid,
    .contact-container,
    .contact-info-grid,
    .contact-secondary,
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .why-us {
        padding: 60px 5% !important;
    }

    .about-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .about-text h3 {
        font-size: 2.2rem !important;
    }

    .about-image {
        height: 300px !important;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-container {
        gap: 50px;
    }

    .about-content-box {
        text-align: center;
    }

    .about-stats-modern {
        margin-top: 40px;
    }
}

@media (max-width: 470px) {
    /* More compact styles */
    .social-links {
        display: none;
    }
    .sub-img-wrapper {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .about-stats-modern {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
