/* CSS Variables & Theme Setup - Jaeci (Delicate Jewelry Theme) */
:root {
    --primary-color: #f8ad9d;       /* Soft Blush Pink */
    --secondary-color: #343a40;     /* Muted Charcoal */
    --accent-color: #d4a373;        /* Warm Rose Gold */
    --accent-hover: #b8865b;        /* Darker Gold */
    --bg-light: #faf9f6;            /* Warm Off-White / Alabaster */
    --bg-card: #ffffff;
    --text-main: #495057;           /* Muted Gray */
    --text-light: #868e96;          /* Light Muted Gray */
    --text-dark: #212529;           /* Soft Black */
    --border-color: #e9ecef;        /* Very Light Gray */
    --font-heading: 'Lora', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-light);
    padding-bottom: 60px; /* space for mobile call bar */
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Top Contact Bar */
.top-bar {
    background-color: #ffffff;
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.05em;
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.logo-main {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav a:not(.cta-btn):hover {
    color: var(--accent-color);
}

/* Utility Button Classes (Thin, Minimalist Borders) */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    font-weight: 400;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--transition-speed);
}

.small-btn {
    padding: 8px 18px;
    font-size: 0.75rem;
    border: 1px solid var(--accent-color);
}

.primary-btn {
    background-color: var(--accent-color);
    color: #ffffff;
    border: 1px solid var(--accent-color);
}

.primary-btn:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}

.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-1px);
}

/* Hero Section with Cinematic Drift */
.hero {
    height: 560px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: heroDrift 28s infinite alternate ease-in-out;
}

@keyframes heroDrift {
    0% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.08) translate(-0.5%, -0.5%);
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 58, 64, 0.75) 0%, rgba(52, 58, 64, 0.35) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
    z-index: 1;
}

.hero .badge {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 0 auto 20px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 2px;
    transition: all var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 163, 115, 0.05);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1;
    color: var(--accent-color);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 400;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-text .divider {
    margin: 0 0 24px 0;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 4px;
    text-transform: uppercase;
}

.about-img-container {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Hours & Location */
.hours-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hours-card, .location-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 2px;
}

.hours-card h3, .location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hours-card .divider, .location-card .divider {
    margin: 0 0 30px 0;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking-header {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 40px;
    text-align: center;
}

.booking-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.booking-form {
    padding: 40px;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: all var(--transition-speed);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.08);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

.form-status {
    display: none;
    margin-top: 20px;
    padding: 16px;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.yelp-ref {
    margin-top: 8px;
    font-size: 0.8rem;
}

.yelp-ref a {
    color: #ffffff;
    text-decoration: underline;
}

.yelp-ref a:hover {
    color: var(--primary-color);
}

/* Marketing Badge (Claim Badge) */
.marketing-badge {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(52, 58, 64, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    backdrop-filter: blur(8px);
    animation: slideUp 0.5s ease-out;
    max-width: 600px;
    margin: 0 auto;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.badge-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    padding-right: 15px;
}

.badge-content strong {
    color: var(--primary-color);
}

.badge-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.badge-claim-btn {
    display: inline-flex;
    white-space: nowrap;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color var(--transition-speed);
}

.badge-claim-btn:hover {
    background-color: var(--accent-hover);
}

.badge-phone-btn {
    display: inline-flex;
    white-space: nowrap;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.badge-phone-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.close-badge {
    position: absolute;
    top: 8px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-speed);
}

.close-badge:hover {
    color: #ffffff;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Sticky Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    border-top: 1px solid var(--accent-color);
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-call-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 16px;
    width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 12px;
    }
    .main-nav {
        gap: 16px;
    }
    .hero {
        height: auto;
        padding: 100px 0 80px 0;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hours-grid {
        grid-template-columns: 1fr;
    }
    .hours-card, .location-card {
        padding: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .marketing-badge {
        bottom: 78px;
        left: 12px;
        right: 12px;
        padding: 16px;
    }
    .badge-content {
        gap: 12px;
    }
    .badge-actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .mobile-call-bar {
        display: flex;
    }
}

/* Scroll-Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}
