/* ===================================
   Velvet Touch Nails - Styles
   =================================== */

/* CSS Variables - Brand Colors */
:root {
    --velvet-plum: #6B2D6D;
    --velvet-plum-dark: #5a2659;
    --soft-blush: #F6E9EB;
    --pearl-cream: #FFF8F4;
    --charcoal: #2A2A2A;
    --charcoal-light: #4A4A4A;
    --rose-gold: #B76E79;
    --rose-gold-light: #d4959e;
    --seafoam: #8FD8C5;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --gray-lighter: #E5E7EB;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   Demo Banner
   =================================== */
.demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    z-index: 1001;
}

.demo-banner .back-link {
    color: var(--rose-gold-light);
    font-weight: 500;
    transition: var(--transition);
}

.demo-banner .back-link:hover {
    color: var(--white);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--velvet-plum);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--velvet-plum-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.logo-monogram {
    width: 40px;
    height: 40px;
    background: var(--velvet-plum);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius);
}

.nav-link:hover {
    color: var(--velvet-plum);
}

.nav-cta {
    margin-left: 1rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

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

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

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

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--soft-blush);
    color: var(--velvet-plum);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    padding: 10rem 1.5rem 6rem;
    background: linear-gradient(135deg, var(--pearl-cream) 0%, var(--soft-blush) 100%);
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--velvet-plum);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.hero-img-placeholder {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 5/4;
    background: linear-gradient(135deg, var(--velvet-plum) 0%, var(--rose-gold) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin: 1.5rem;
}

/* ===================================
   Intro Section
   =================================== */
.intro {
    padding: 4rem 0;
    background: var(--white);
}

.intro-text {
    font-size: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--charcoal-light);
    line-height: 1.8;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 4rem 0;
    background: var(--pearl-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--velvet-plum);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===================================
   Services Preview Section
   =================================== */
.services-preview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.service-img-1 { background: linear-gradient(135deg, var(--velvet-plum) 0%, var(--rose-gold) 100%); }
.service-img-2 { background: linear-gradient(135deg, var(--rose-gold) 0%, var(--soft-blush) 100%); }
.service-img-3 { background: linear-gradient(135deg, var(--charcoal) 0%, var(--velvet-plum) 100%); }
.service-img-4 { background: linear-gradient(135deg, var(--seafoam) 0%, var(--velvet-plum) 100%); }
.service-img-5 { background: linear-gradient(135deg, var(--soft-blush) 0%, var(--rose-gold) 100%); }
.service-img-6 { background: linear-gradient(135deg, var(--velvet-plum) 0%, var(--charcoal) 100%); }

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-lighter);
}

.service-footer .price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--velvet-plum);
}

.service-footer .duration {
    font-size: 0.875rem;
    color: var(--gray);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   Full Services Menu
   =================================== */
.services-full {
    background: var(--soft-blush);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.menu-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--velvet-plum);
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.menu-item-name {
    font-weight: 600;
    color: var(--charcoal);
}

.menu-item-price {
    font-weight: 700;
    color: var(--velvet-plum);
}

.menu-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Packages */
.packages {
    margin-top: 4rem;
}

.packages h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.highlight {
    border: 2px solid var(--velvet-plum);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose-gold);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.package-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--velvet-plum);
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.package-card ul {
    text-align: left;
}

.package-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--seafoam);
    font-weight: 700;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--pearl-cream);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.quote-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--velvet-plum);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--velvet-plum);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    background: var(--velvet-plum);
    color: var(--white);
}

.how-it-works .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.how-it-works .section-title {
    color: var(--white);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--velvet-plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 2.5rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--velvet-plum) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Team */
.team h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: var(--velvet-plum);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    color: var(--velvet-plum);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background: var(--soft-blush);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item-1 { background: linear-gradient(135deg, var(--soft-blush) 0%, var(--rose-gold) 100%); color: var(--charcoal); }
.gallery-item-2 { background: linear-gradient(135deg, var(--velvet-plum) 0%, var(--rose-gold) 100%); }
.gallery-item-3 { background: linear-gradient(135deg, var(--rose-gold) 0%, var(--velvet-plum) 100%); }
.gallery-item-4 { background: linear-gradient(135deg, var(--seafoam) 0%, var(--velvet-plum) 100%); }
.gallery-item-5 { background: linear-gradient(135deg, var(--pearl-cream) 0%, var(--rose-gold) 100%); color: var(--charcoal); }
.gallery-item-6 { background: linear-gradient(135deg, var(--velvet-plum) 0%, var(--charcoal) 100%); }

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--pearl-cream);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   Booking Section
   =================================== */
.booking {
    background: var(--pearl-cream);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.booking-info p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal);
}

.booking-feature svg {
    width: 24px;
    height: 24px;
    color: var(--seafoam);
}

/* Booking Widget */
.booking-widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.widget-header {
    background: var(--velvet-plum);
    color: var(--white);
    padding: 1.5rem;
}

.widget-header h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.widget-body {
    padding: 1.5rem;
}

.service-select {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-select label {
    cursor: pointer;
}

.service-select input {
    display: none;
}

.service-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-select input:checked + .service-option {
    border-color: var(--velvet-plum);
    background: var(--soft-blush);
}

.service-name {
    font-weight: 500;
}

.service-price {
    font-weight: 700;
    color: var(--velvet-plum);
}

.widget-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.875rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--velvet-plum);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--pearl-cream);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--velvet-plum);
}

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

/* Map */
.map-placeholder {
    height: 300px;
    background: var(--gray-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 500;
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter {
    background: var(--velvet-plum);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    background: var(--rose-gold);
}

.newsletter-form .btn:hover {
    background: var(--rose-gold-light);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand .logo-monogram {
    background: var(--velvet-plum);
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--rose-gold-light);
}

.footer-contact p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-light);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
        padding: 0;
    }

    .hero-image {
        order: 0;
        padding: 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-img-placeholder {
        max-width: 350px;
        aspect-ratio: 1;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content,
    .booking-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .demo-banner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .navbar {
        top: 52px;
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .logo-monogram {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 105px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero {
        padding: 9rem 1rem 4rem;
        min-height: auto;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
        padding: 0;
        width: 100%;
    }

    .hero-image {
        order: 0;
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-img-placeholder {
        width: 200px;
        height: 200px;
        max-width: 200px;
        aspect-ratio: 1;
        font-size: 1rem;
        padding: 1rem;
        margin: 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .gallery-grid,
    .faq-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-card {
        max-width: 100%;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .menu-category h3 {
        font-size: 1.25rem;
    }

    .menu-item-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .packages {
        margin-top: 2rem;
    }

    .packages h3 {
        font-size: 1.5rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-price {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .step {
        min-width: 100%;
        max-width: 100%;
        padding: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-line {
        display: none;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-img-placeholder {
        font-size: 1rem;
    }

    .team-grid {
        gap: 2rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .gallery-item {
        font-size: 0.95rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .booking-content {
        gap: 2rem;
    }

    .booking-info h2 {
        font-size: 1.75rem;
    }

    .booking-widget {
        margin: 0 -0.5rem;
    }

    .widget-header {
        padding: 1.25rem;
    }

    .widget-header h3 {
        font-size: 1.1rem;
    }

    .widget-body {
        padding: 1.25rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        margin: 0 -0.5rem;
    }

    .newsletter {
        padding: 3rem 0;
    }

    .newsletter h2 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input {
        padding: 0.875rem 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .demo-banner {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .navbar {
        top: 44px;
    }

    .nav-menu {
        top: 95px;
    }

    .hero {
        padding: 8rem 1rem 3rem;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-img-placeholder {
        max-width: 240px;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
    }

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

    .intro-text {
        font-size: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .service-image {
        height: 140px;
    }

    .step h3 {
        font-size: 1rem;
    }

    .about-text h2,
    .booking-info h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .newsletter h2 {
        font-size: 1.25rem;
    }

    .map-placeholder {
        height: 200px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-img-placeholder {
        max-width: 200px;
    }

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

    .package-card {
        padding: 1.25rem;
    }
}
