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

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-weight: 400;
    letter-spacing: 1px;
}

h2 {
    font-weight: 500;
}

h3 {
    font-weight: 500;
}

h4 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 184, 150, 0.1);
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 35px;
}

.nav-left a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-left a:hover {
    color: #d4b896;
}

.nav-left a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4b896;
    transition: width 0.3s ease;
}

.nav-left a:hover::after {
    width: 100%;
}

/* Active nav link */
.nav-left a.active {
    color: #d4b896;
}

.nav-left a.active::after {
    width: 100%;
}

.nav-center {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.nav-logo {
    border: 3px solid white;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background-color: rgba(0, 0, 0, 0.3);
}

.nav-logo span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.2;
}

.logo-top {
    font-size: 0.7rem;
}

.logo-middle {
    font-size: 1.1rem;
    font-weight: 700;
}

.logo-bottom {
    font-size: 0.85rem;
}

.nav-right {
    justify-content: flex-end;
    gap: 25px;
}

.nav-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-social a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    color: #d4b896;
    transform: translateY(-2px);
}

/* Gentle click effect for social links */
.nav-social a:active,
.mobile-social a:active,
.social-links a:active {
    transform: scale(0.95);
    opacity: 0.85;
}

.nav-social svg {
    width: 18px;
    height: 18px;
}

.nav-btn {
    padding: 10px 30px;
    font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 40px;
    gap: 30px;
}

.mobile-menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.mobile-menu-content a:hover {
    color: #d4b896;
    transform: translateX(10px);
}

.mobile-menu-content a.active {
    color: #d4b896;
    transform: translateX(10px);
}

.mobile-social {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.mobile-social a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    color: #d4b896;
    transform: scale(1.2);
}

.mobile-menu-btn {
    margin-top: 20px;
    padding: 15px 50px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    border-radius: 9999px;
    padding: 14px 28px;
    box-shadow: 0 10px 25px rgba(212, 184, 150, 0.35);
    z-index: 1000;
}

/* Hide floating CTA when mobile menu is open */
.mobile-menu.active ~ .floating-cta {
    display: none;
}

@media screen and (max-width: 768px) {
    .floating-cta {
        right: 16px;
        bottom: 16px;
        padding: 12px 22px;
        box-shadow: 0 8px 18px rgba(212, 184, 150, 0.3);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

/* Services Hero Section */
.services-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero-title {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Services Image Banner */
.services-image-banner {
    height: 60vh;
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Services Gallery Image */
.services-gallery-image {
    height: 70vh;
    min-height: 350px;
    background-image: url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #1a1a4d 0%, #0d0d2b 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.story-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #e8e8e8;
    font-weight: 300;
}

/* Careers Section */
.careers-section {
    background-color: #d4b896;
    padding: 80px 40px;
    text-align: center;
}

.careers-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

/* Dark Button */
.btn-dark {
    background-color: #1a1a1a;
    color: white;
    border: none;
    display: inline-block;
    text-decoration: none;
    padding: 15px 45px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-dark:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Testimonial Section */
.testimonial-section {
    background-color: white;
    padding: 100px 40px;
    text-align: center;
}

.testimonial-quote {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0 auto 2rem;
    max-width: 900px;
    font-style: normal;
}

.testimonial-author {
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #666;
    font-style: italic;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #d4b896;
    padding: 80px 40px;
    text-align: center;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Form Section */
.contact-form-section {
    background-color: #d4b896;
    padding: 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-image {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-container {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

.contact-form-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 3rem;
}

.contact-phone {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #3a3a3a;
    border-bottom-color: #3a3a3a;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    font-family: 'Lato', sans-serif;
}

.form-group .required {
    font-weight: 400;
    color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    border: 2px solid transparent;
    background-color: white;
    color: #1a1a1a;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    border: 2px solid transparent;
    background-color: white;
    color: #1a1a1a;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%231a1a1a' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

.form-group select:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.contact-form .btn-dark {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Contact Map Section */
.contact-map-section {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 15, 10, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Buttons */
.btn-primary {
    background-color: #d4b896;
    color: #1a1a1a;
    border: none;
    display: inline-block;
    text-decoration: none;
    padding: 15px 45px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-primary:hover {
    background-color: #c4a87d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 184, 150, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #d4b896;
    border: 2px solid #d4b896;
    display: inline-block;
    text-decoration: none;
    padding: 12px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-secondary:hover {
    background-color: #d4b896;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-dark:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.35);
}

/* The Vibe Section */
.vibe-section {
    background-color: #1a1a1a;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.vibe-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #d4d4d4;
    font-weight: 300;
}

/* Info Section */
.info-section {
    background-color: #0a0a0a;
    color: white;
    padding: 80px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.info-card {
    text-align: center;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #d4d4d4;
    font-weight: 300;
}

/* Second Image Section */
.image-section {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    background-color: #f5f5f5;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(30%) contrast(1.1);
}

/* Quote Section */
.quote-section {
    position: relative;
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 80, 0.85) 0%, rgba(10, 10, 40, 0.9) 100%);
}

.quote-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    color: white;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 3rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.quote-btn {
    margin-top: 2rem;
}
/* Menu Section */
.menu-section {
    padding: 100px 40px;
    text-align: center;
    background-color: white;
}

.menu-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.menu-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 300;
}

.menu-btn {
    margin-top: 2rem;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: left;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #d4b896;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #1a1a1a;
    color: white;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.service-badge::before {
    content: "★";
    display: inline-block;
    margin-right: 6px;
    font-size: 0.9em;
}

.service-badge.premium {
    background: linear-gradient(135deg, #d4b896 0%, #c4a886 100%);
    color: #1a1a1a;
}

.service-content {
    padding: 25px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4b896;
    font-family: 'Cinzel', serif;
}

.service-duration {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 20px;
}

.service-includes {
    background-color: #fafafa;
    padding: 18px;
    border-radius: 8px;
    border-left: 3px solid #d4b896;
}

.includes-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    font-size: 0.9rem;
    color: #444;
    padding: 6px 0;
    line-height: 1.4;
}

.services-cta {
    margin-top: 50px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    max-width: 800px;
    margin: 50px auto 0;
}

.services-cta h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 400;
}

.services-cta p {
    font-size: 1rem;
    color: #d4b896;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #d4d4d4;
    font-weight: 300;
}

.logo-box {
    border: 2px solid white;
    padding: 15px 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Lato', sans-serif;
}

.logo-subtext {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: 'Lato', sans-serif;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4b896;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #444;
    background-color: #1a1a1a;
    color: white;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 12px 25px;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888;
    font-weight: 300;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .services-hero-title {
        font-size: 3rem;
        padding: 0 40px;
    }
    
    .menu-section {
        padding: 90px 35px;
    }
    
    .menu-grid {
        gap: 40px 70px;
    }
    
    .quote-text {
        font-size: 1.9rem;
        padding: 0 30px;
    }
    
    .about-hero-title {
        font-size: 3.2rem;
        padding: 0 35px;
    }
    
    .story-section {
        padding: 90px 35px;
    }
    
    .story-title {
        font-size: 2.6rem;
    }
    
    .story-text {
        font-size: 1.02rem;
    }
    
    .careers-section,
    .final-cta-section {
        padding: 75px 35px;
    }
    
    .careers-title,
    .final-cta-title {
        font-size: 2.3rem;
    }
    
    .testimonial-section {
        padding: 90px 35px;
    }
    
    .testimonial-quote {
        font-size: 2rem;
    }
    
    .contact-hero-title {
        font-size: 3.5rem;
        padding: 0 35px;
    }
    
    .contact-form-wrapper {
        min-height: 550px;
    }
    
    .contact-form-container {
        padding: 70px 50px;
    }
    
    .contact-form-title {
        font-size: 2.6rem;
    }
    
    .service-badge {
        top: 9px;
        right: 9px;
        font-size: 0.62rem;
        padding: 4px 10px;
        border-radius: 13px;
    }
}

@media screen and (max-width: 1024px) {
    .navbar {
        padding: 12px 25px;
    }
    
    .nav-left {
        gap: 25px;
    }
    
    .nav-left a {
        font-size: 0.9rem;
    }
    
    .logo-middle {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .menu-grid {
        gap: 40px 60px;
    }
    
    .services-hero {
        height: 55vh;
        min-height: 400px;
    }
    
    .services-hero-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
        padding: 0 30px;
    }
    
    .services-image-banner {
        height: 35vh;
        min-height: 280px;
    }
    
    .services-gallery-image {
        height: 45vh;
        min-height: 320px;
    }
    
    .menu-section {
        padding: 80px 30px;
    }
    
    .menu-grid {
        gap: 35px 50px;
    }
    
    .service-badge {
        top: 8px;
        right: 8px;
        font-size: 0.6rem;
        padding: 4px 9px;
        border-radius: 12px;
    }
    
    .menu-item h4 {
        font-size: 1.3rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        letter-spacing: 1.8px;
        padding: 0 28px;
    }
    
    .services-image-banner {
        height: 38vh;
        min-height: 270px;
    }
    
    .services-gallery-image {
        height: 42vh;
        min-height: 300px;
    }
    
    .menu-section {
        padding: 75px 28px;
    }
    
    .menu-title {
        font-size: 2.3rem;
    }
    
    .vibe-section {
        padding: 80px 25px;
    }
    
    .vibe-text {
        font-size: 0.98rem;
    }
    
    .quote-text {
        font-size: 1.7rem;
    }
    
    .about-hero {
        height: 55vh;
        min-height: 400px;
    }
    
    .about-hero-title {
        font-size: 2.8rem;
        padding: 0 30px;
    }
    
    .story-section {
        padding: 80px 30px;
    }
    
    .story-title {
        font-size: 2.4rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .careers-section,
    .final-cta-section {
        padding: 70px 30px;
    }
    
    .careers-title,
    .final-cta-title {
        font-size: 2.1rem;
    }
    
    .testimonial-section {
        padding: 80px 30px;
    }
    
    .testimonial-quote {
        font-size: 1.8rem;
    }
    
    .btn-dark {
        padding: 13px 38px;
        font-size: 0.92rem;
    }
    
    .contact-hero {
        height: 55vh;
        min-height: 400px;
    }
    
    .contact-hero-title {
        font-size: 3rem;
        padding: 0 30px;
        letter-spacing: 2px;
    }
    
    .contact-form-wrapper {
        min-height: 500px;
    }
    
    .contact-form-container {
        padding: 60px 40px;
    }
    
    .contact-form-title {
        font-size: 2.4rem;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
    }
    
    .contact-map-section {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .nav-center {
        flex: 1;
        justify-content: flex-start;
    }
    
    .nav-logo {
        padding: 8px 15px;
        border-width: 2px;
    }
    
    .logo-top {
        font-size: 0.55rem;
    }
    
    .logo-middle {
        font-size: 0.85rem;
    }
    
    .logo-bottom {
        font-size: 0.7rem;
    }
    
    .hamburger {
        display: flex;
    }

    /* Disable parallax backgrounds on mobile for performance */
    .hero,
    .about-hero,
    .contact-hero,
    .quote-section,
    .image-section {
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .vibe-section {
        padding: 70px 22px;
    }
    
    .section-title {
        font-size: 2.3rem;
        margin-bottom: 1.8rem;
    }
    
    .vibe-text {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 13px 38px;
        font-size: 0.92rem;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .menu-item-full {
        grid-column: 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .logo-box {
        padding: 12px 15px;
        margin-bottom: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-subtext {
        font-size: 0.65rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        font-size: 0.85rem;
    }
    
    .newsletter-form input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .newsletter-form button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .section-title,
    .menu-title {
        font-size: 2rem;
    }
    
    .services-hero {
        height: 70vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .services-hero-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
        padding: 0 25px;
        line-height: 1.3;
    }
    
    .services-image-banner {
        height: 50vh;
        min-height: 250px;
        background-attachment: scroll;
    }
    
    .services-gallery-image {
        height: 60vh;
        min-height: 280px;
        background-attachment: scroll;
    }
    
    .menu-section {
        padding: 70px 25px;
    }
    
    .menu-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .menu-grid {
        gap: 35px;
        margin-bottom: 3rem;
    }
    
    .menu-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .menu-item p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    
    .info-section {
        padding: 60px 20px;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    .map-section {
        height: 350px;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-image {
        min-height: 350px;
    }
    
    .contact-form-container {
        padding: 60px 30px;
    }
    
    .contact-form-title {
        font-size: 2.2rem;
    }
    
    .contact-form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-header h3 {
        font-size: 1.4rem;
    }
    
    .service-price {
        font-size: 1.6rem;
    }
    
    .services-cta {
        padding: 30px 20px;
    }
    
    .services-cta h3 {
        font-size: 1.7rem;
    }
    
    .about-hero {
        height: 70vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        padding: 0 25px;
        letter-spacing: 1.5px;
    }
    
    .story-section {
        padding: 70px 25px;
    }
    
    .story-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .story-text {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .careers-section,
    .final-cta-section {
        padding: 60px 25px;
    }
    
    .careers-title,
    .final-cta-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-section {
        padding: 70px 25px;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
        line-height: 1.55;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    .btn-dark {
        padding: 12px 35px;
        font-size: 0.9rem;
    }
    
    .contact-hero {
        height: 70vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        padding: 0 25px;
        letter-spacing: 1.8px;
    }
    
    .contact-image {
        min-height: 300px;
    }
    
    .contact-form-container {
        padding: 50px 25px;
    }
    
    .contact-form-title {
        font-size: 2rem;
        margin-bottom: 1.3rem;
    }
    
    .contact-form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .contact-map-section {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 8px 15px;
    }
    
    .nav-logo {
        padding: 6px 12px;
    }
    
    .logo-top {
        font-size: 0.5rem;
    }
    
    .logo-middle {
        font-size: 0.75rem;
    }
    
    .logo-bottom {
        font-size: 0.6rem;
    }
    
    .hamburger span {
        width: 25px;
    }
    
    .mobile-menu-content a {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
    
    .vibe-section {
        padding: 60px 20px;
    }
    
    .vibe-text {
        font-size: 0.95rem;
    }
    
    .menu-section {
        padding: 60px 20px;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
    
    .footer-section p {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .logo-box {
        padding: 10px 12px;
        margin-bottom: 0.8rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .logo-subtext {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .social-links {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .social-links a {
        font-size: 0.75rem;
    }
    
    .newsletter-form input {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .newsletter-form button {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .services-hero {
        height: 45vh;
        min-height: 320px;
        background-attachment: scroll;
    }
    
    .services-hero-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
        padding: 0 20px;
        line-height: 1.25;
    }
    
    .services-image-banner {
        height: 28vh;
        min-height: 220px;
        background-attachment: scroll;
    }
    
    .services-gallery-image {
        height: 35vh;
        min-height: 240px;
        background-attachment: scroll;
    }
    
    .menu-section {
        padding: 50px 18px;
    }
    
    .art-deco-divider {
        width: 150px;
        height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .menu-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1.5px;
    }
    
    .menu-grid {
        gap: 30px;
        margin-bottom: 2.5rem;
    }
    
    .menu-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
        letter-spacing: 0.8px;
    }
    
    .menu-item p {
        font-size: 0.85rem;
        line-height: 1.55;
    }
    
    .info-section {
        padding: 50px 18px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .quote-section {
        min-height: 400px;
        padding: 60px 18px;
    }
    
    .service-badge {
        top: 6px;
        right: 6px;
        font-size: 0.52rem;
        padding: 3px 8px;
        border-radius: 11px;
    }
    
    .quote-text {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .map-section {
        height: 350px;
    }
    
    .about-hero {
        height: 70vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
        padding: 0 20px;
        letter-spacing: 1px;
        line-height: 1.25;
    }
    
    .story-section {
        padding: 60px 20px;
    }
    
    .story-title {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    .story-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .careers-section,
    .final-cta-section {
        padding: 50px 20px;
    }
    
    .careers-title,
    .final-cta-title {
        font-size: 1.7rem;
        margin-bottom: 1.8rem;
        letter-spacing: 1.2px;
    }
    
    .testimonial-section {
        padding: 60px 20px;
    }
    
    .testimonial-quote {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.95rem;
    }
    
    .btn-dark {
        padding: 12px 32px;
        font-size: 0.85rem;
        letter-spacing: 1.2px;
    }
    
    .contact-hero {
        height: 45vh;
        min-height: 320px;
        background-attachment: scroll;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
        padding: 0 20px;
        letter-spacing: 1.5px;
    }
    
    .contact-image {
        min-height: 280px;
    }
    
    .contact-form-container {
        padding: 50px 20px;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        letter-spacing: 1.2px;
    }
    
    .contact-form-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 2.2rem;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.88rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 11px 13px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 130px;
    }
    
    .contact-form .btn-dark {
        padding: 11px 30px;
        font-size: 0.85rem;
    }
    
    .contact-map-section {
        height: 300px;
    }
}

@media screen and (max-width: 360px) {
    .footer-content {
        gap: 25px 10px;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
    }
    
    .footer-section p {
        font-size: 0.7rem;
    }
    
    .logo-box {
        padding: 8px 10px;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    .logo-subtext {
        font-size: 0.55rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        font-size: 0.75rem;
        padding: 7px 10px;
    }
    
    .services-hero {
        height: 60vh;
        min-height: 280px;
    }
    
    .services-hero-title {
        font-size: 1.5rem;
        letter-spacing: 0.8px;
        padding: 0 15px;
    }
    
    .services-image-banner {
        height: 25vh;
        min-height: 200px;
    }
    
    .services-gallery-image {
        height: 50vh;
        min-height: 220px;
    }
    
    .menu-section {
        padding: 45px 15px;
    }
    
    .art-deco-divider {
        width: 130px;
        height: 45px;
    }
    
    .menu-title {
        font-size: 1.6rem;
        letter-spacing: 1.2px;
    }
    
    .menu-item h4 {
        font-size: 1rem;
    }
    
    .menu-item p {
        font-size: 0.8rem;
    }
    
    .info-section {
        padding: 45px 15px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
    
    .quote-section {
        min-height: 350px;
        padding: 50px 15px;
    }
    
    .quote-text {
        font-size: 1.1rem;
        line-height: 1.45;
    }
    
    .map-section {
        height: 280px;
    }
    
    .about-hero {
        height: 60vh;
        min-height: 280px;
    }
    
    .about-hero-title {
        font-size: 1.6rem;
        padding: 0 15px;
        letter-spacing: 0.8px;
    }
    
    .story-section {
        padding: 50px 15px;
    }
    
    .story-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text {
        font-size: 0.85rem;
        line-height: 1.65;
    }
    
    .careers-section,
    .final-cta-section {
        padding: 45px 15px;
    }
    
    .careers-title,
    .final-cta-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .testimonial-section {
        padding: 50px 15px;
    }
    
    .testimonial-quote {
        font-size: 1.15rem;
        line-height: 1.45;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    .btn-dark {
        padding: 10px 28px;
        font-size: 0.8rem;
    }
    
    .contact-hero {
        height: 60vh;
        min-height: 280px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
        padding: 0 15px;
        letter-spacing: 1.2px;
    }
    
    .contact-image {
        min-height: 250px;
    }
    
    .contact-form-container {
        padding: 45px 15px;
    }
    
    .contact-form-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .contact-form-subtitle {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        gap: 1.3rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-form .btn-dark {
        padding: 10px 26px;
        font-size: 0.8rem;
    }
    
    .contact-map-section {
        height: 280px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1,
.hero-content .btn-primary {
    animation: fadeIn 1s ease-out;
}

.hero-content .btn-primary {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.navbar {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
