* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #f8f5f1;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-block;
}

.logo-img {
    height: 105px;
    width: auto;
    vertical-align: middle;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Footer logo specific styling */
.footer-logo {
    filter: brightness(0) invert(1);
    height: 75px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:not(.book-now-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.book-now-btn):hover::after {
    width: 100%;
}

.book-now-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    display: inline-block;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: #c39764;
}

.nav-links .book-now-btn:hover::after {
    width: 0;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 125px;
    position: relative;
    height: calc(100vh - 125px);
    min-height: 650px;
    overflow: hidden;
}

.hero-slider {
    height: calc(100% - 80px);
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-tag {
    display: inline-block;
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: bold;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

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

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f8f8;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-book {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.service-book:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Instagram Gallery */
.instagram-section {
    padding: 6rem 0;
    background: var(--accent-color);
}

.instagram-section .section-header a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.instagram-section .section-header a:hover {
    text-decoration: underline;
}

/* Instagram feed container - Elfsight widget will style itself */
#instagram-feed {
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.instagram-cta .btn i {
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--accent-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-rating {
    color: #ffd700;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 30px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Square Appointments Widget */
.booking-widget {
    margin: 3rem 0;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .booking-section {
        padding: 3rem 0;
    }
    
    .booking-section .container {
        padding: 0 !important;
        max-width: 100%;
    }
    
    .booking-content {
        margin-top: 2rem;
    }
    
    .booking-info {
        background: var(--white);
        padding: 2.5rem 1.5rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        max-width: 100% !important;
        width: 100%;
        margin: 0;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    nav {
        padding: 0.3rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 75px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links .book-now-btn {
        margin-top: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.3rem;
    }

    .hero {
        margin-top: 95px;
        height: auto;
        min-height: calc(100vh - 95px);
    }
    
    .hero-slider {
        height: calc(100vh - 140px);
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-bottom {
        padding: 1rem 0;
    }
    
    .hero-features {
        gap: 1rem;
        flex-direction: column;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .hero-feature i {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-widget {
        display: none;
    }
    
    
    .booking-info h3 {
        font-size: 1.3rem;
    }
    
    .booking-info-cta {
        display: block;
    }
    
    .business-hours h4 {
        font-size: 1.1rem;
    }
    
    .booking-placeholder {
        padding: 1rem;
    }
    
    .booking-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .booking-placeholder i {
        font-size: 3rem;
    }
    
    .booking-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-actions .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .stats {
        justify-content: center;
    }
}



/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.booking-widget {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    min-height: 500px;
}

#square-booking-widget {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Ensure Square widget iframe stays within container */
#square-booking-widget iframe {
    max-width: 100%;
    width: 100% !important;
}

/* Hide any Square widgets that appear at the bottom of the page */
body > iframe[src*="square"],
body > iframe[src*="squareup"],
body > div.square-appointments-iframe-wrapper {
    display: none !important;
}

/* Only show Square widgets inside our booking container */
#square-booking-widget iframe,
#square-booking-widget .square-appointments-iframe-wrapper {
    display: block !important;
    min-height: 600px;
}

.booking-mobile-fallback {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.square-booking-button {
    background-color: var(--primary-color);
    color: white;
    height: 50px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    line-height: 48px;
    padding: 0 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.square-booking-button:hover {
    background-color: #c39764;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

@media (max-width: 768px) {
    .booking-mobile-fallback {
        display: block;
    }
}

.booking-placeholder {
    text-align: center;
    padding: 2rem;
}

.booking-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.booking-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.booking-placeholder p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.booking-actions .btn i {
    margin-right: 0.5rem;
}

.booking-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.booking-list {
    list-style: none;
    margin-bottom: 2rem;
}

.booking-list li {
    padding: 0.8rem 0;
    color: var(--text-light);
}

.booking-list i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.business-hours {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.business-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hour-item span:first-child {
    font-weight: 500;
    color: var(--secondary-color);
}

.booking-info-cta {
    display: none;
    margin-top: 2rem;
    text-align: center;
}

.booking-info-cta .btn {
    width: 100%;
}


/* iPhone Pro Max and similar large phones */
@media (max-width: 430px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 0.7rem 0;
    }
    
    .hero {
        margin-top: 85px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .booking-section {
        padding: 3rem 0;
    }
    
    .booking-section .container {
        padding: 0;
    }
    
    .booking-section .section-header {
        padding: 0 15px;
    }
    
    .booking-widget {
        padding: 1.5rem;
    }
    
    
    .booking-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .hour-item {
        font-size: 0.85rem;
    }
    
    .booking-placeholder p {
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
    overflow: hidden;
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 20px 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--secondary-color);
}

.modal-body {
    padding: 40px 40px 50px;
    text-align: center;
}

.modal-body h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.modal-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.modal-feature {
    text-align: center;
}

.modal-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.modal-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.modal-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.modal-address {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.modal-address i {
    color: var(--primary-color);
}

.modal-address strong {
    color: var(--secondary-color);
    display: inline-block;
    margin-top: 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 30px;
    text-transform: none;
    letter-spacing: normal;
}

.modal-btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-body h2 {
        font-size: 1.8rem;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-feature i {
        font-size: 2rem;
    }
    
    .modal-btn,
    .modal-btn-secondary {
        width: 100%;
    }
}
EOF < /dev/null