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

:root {
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --dark: #1a1a1a;
    --light: #f8f5f1;
    --accent: #8b4513;
    --text-dark: #2c2c2c;
    --overlay: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography - Mobile First */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent);
    margin-bottom: 1rem;
}

p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    color: var(--gold);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 2px;
    z-index: 1001;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform-origin: left;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translateY(-2px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translateY(2px);
}

/* Mobile Navigation Overlay */

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(139,69,19,0.3) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem 1rem;
    animation: fadeInUp 1.5s ease;
    max-width: 90%;
}

.hero-content h1 {
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-logo {
    width: clamp(100px, 20vw, 180px);
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    animation: fadeInUp 1.2s ease;
}

.tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: clamp(0.9rem, 2vw, 1rem);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--light);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
}

.price {
    color: var(--gold);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    margin: 0.5rem 0;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
}

/* Menu Section */
.menu-section {
    background: linear-gradient(135deg, #f8f5f1 0%, #fff 100%);
    padding: 3rem 0;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-category {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.menu-category h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.menu-item {
    background: var(--light);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: 2px solid var(--gold);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: var(--transition);
    white-space: nowrap;
}

.menu-item:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.05);
}

/* Garden Quote */
.garden-quote {
    background: linear-gradient(135deg, var(--accent), var(--dark));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.garden-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: clamp(100px, 20vw, 200px);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gold);
    letter-spacing: 2px;
}

/* Recent Work Gallery */
.recent-work-section {
    background: #fff;
    padding: 3rem 0;
}

.recent-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
}

.gallery-main {
    max-width: 800px;
    width: 100%;
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.gallery-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(26, 26, 26, 0.85);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
}

.swipe-hint {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    display: none;
}

.recent-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    max-height: 200px;
    overflow-y: auto;
    padding: 0.5rem;
}

.recent-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition);
}

.recent-thumbnails img:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.recent-thumbnails img.active {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Form */
.contact-section {
    background: var(--light);
    padding: 3rem 0;
}


.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item i {
    color: var(--gold);
    width: 20px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.social-links a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--gold);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .menu-categories {
        gap: 2rem;
    }
    
    .recent-thumbnails {
        gap: 0.75rem;
    }
    
    .recent-thumbnails img {
        width: 80px;
        height: 80px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-arrow {
        width: 44px;
        height: 44px;
    }
    
    .form-container {
        padding: 3rem 2.5rem;
    }
}

/* Mobile Only Styles */
@media (max-width: 767px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        color: white;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    

    /* Mobile Gallery */
    .gallery-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .gallery-arrow.prev {
        left: 10px;
    }
    
    .gallery-arrow.next {
        right: 10px;
    }
    
    .swipe-hint {
        display: block;
    }
    
    /* Mobile Hero */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Mobile Services */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    
    
    /* Mobile Contact Form */
    .form-container {
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Mobile Footer */
    .footer-section {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .recent-thumbnails {
        display: none;
    }
    
    .menu-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    nav, .hero-overlay, .video-background, .back-to-top, .gallery-arrow {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Bonus Offer Styling */
.bonus-offer {
    margin-top: 10px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
}

/* Premium Menu Item Styling */
.menu-item.premium {
    background: var(--light);
    border: 2px solid var(--gold);
    font-weight: 500;
}

.menu-item.premium:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.05);
}

/* Price Estimate Box in Form */
.price-estimate {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-estimate p {
    margin: 0;
    font-size: 1rem;
}

.price-estimate strong {
    font-size: 1.5rem;
    color: var(--gold);
}

.price-estimate .price-note {
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 8px;
    font-style: italic;
}

/* Duration Row Styling */
#durationRow {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}