/* Bare Body By Sawssan - Luxurious & Refined */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary-gold: #C9A961;
    --dark-gold: #A88B4F;
    --light-gold: #E5D4A8;
    --accent-gold: #D4AF37;
    --black: #0A0A0A;
    --dark-gray: #1C1C1C;
    --medium-gray: #2E2E2E;
    --light-gray: #F5F5F5;
    --cream: #FAF8F3;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #5A5A5A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    height: auto;
}

p {
    margin: 0;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(201, 169, 97, 0.2); }
    50% { box-shadow: 0 0 50px rgba(201, 169, 97, 0.4); }
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.transparent {
    background: rgba(10, 10, 10, 0.05);
    backdrop-filter: none;
    border-bottom-color: rgba(201, 169, 97, 0.05);
    box-shadow: none;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(201, 169, 97, 0.4);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo-container {
    animation: fadeIn 1s ease;
}

.logo {
    height: 75px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
}

.logo:hover {
    transform: scale(1.06);
    filter: brightness(1.1) drop-shadow(0 0 30px rgba(201, 169, 97, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    animation: fadeIn 1s ease 0.2s backwards;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-gold);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.15);
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 5rem 2rem;
    animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

.hero h1 {
    font-size: 6.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 3.5rem;
    color: var(--light-gold);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.4rem 4rem;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-gold);
    letter-spacing: 2.5px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border-radius: 0;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.3);
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 169, 97, 0.2);
}

/* Sections */
section {
    padding: 9rem 6%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

section.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    font-size: 4.2rem;
    font-weight: 300;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 3px;
    position: relative;
    line-height: 1.3;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

section > p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

/* Page Headers */
.page-header {
    position: relative;
    min-height: calc(60vh + 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    background: var(--dark-gray);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6) contrast(1.2);
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
    justify-items: center;
}

.service-card {
    background: var(--white);
    padding: 4rem 3.5rem;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 169, 97, 0.3);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-medium);
}

.service-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-left: 3px solid var(--primary-gold);
}

.service-note p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 8rem 6%;
    text-align: center;
    margin: 0;
    max-width: 100%;
}

.social-section h2 {
    color: var(--white);
}

.social-section h2::after {
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.social-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 2.5rem auto 3.5rem;
}

.social-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3.5rem;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-gold);
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-btn:hover::before {
    left: 0;
}

.social-btn:hover {
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.3);
}

.social-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.2);
}

.social-btn svg {
    transition: transform 0.4s ease;
}

.social-btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    margin-top: 6rem;
    align-items: start;
}

.about-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 2rem;
    text-align: left;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary-gold);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    aspect-ratio: 3/4;
}

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

/* Business Info */
.business-info {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(201, 169, 97, 0.06) 100%);
    padding: 8rem 6%;
    margin: 0;
    max-width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin: 6rem 0;
}

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

.info-item h4 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.info-item a {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-item a:hover {
    transform: translateY(-3px);
    color: var(--accent-gold);
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.map-container {
    width: 100%;
    height: 500px;
    margin-top: 4rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    overflow: hidden;
}

/* Booking Section */
.booking-container {
    max-width: none;
    margin: 0;
    padding: 8rem 0 10rem;
    background: var(--white);
    width: 100%;
}

.booking-container h2 {
    text-align: center;
}

.booking-container p {
    color: var(--text-medium);
}

.booking-embed {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.booking-alert {
    margin: 0 0 2.5rem;
    padding: 1.6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.35) 100%);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 18px 35px rgba(201, 169, 97, 0.25);
    color: var(--dark-gray);
    font-size: 1.3rem;
    letter-spacing: 0.4px;
}

.booking-alert p {
    margin: 0;
    font-weight: 500;
}

.booking-alert strong {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-alert a {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 28, 28, 0.6);
    padding-bottom: 2px;
}

.booking-alert a:hover {
    color: var(--black);
    border-bottom-color: rgba(10, 10, 10, 0.9);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 6rem 6% 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto 4rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    flex-direction: row;
    align-items: center;
}

.social-links a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
    display: block;
}

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

.social-links a:hover svg {
    transform: scale(1.15);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Loading Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

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

/* Enhanced Scroll Reveal */
section.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    nav {
        padding: 1rem 4%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(201, 169, 97, 0.2);
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 1.5rem;
    }

    section {
        padding: 6rem 5%;
    }

    section h2 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .social-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .logo {
        height: 60px;
    }

    .nav-links {
        width: 85%;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 0.85rem;
    }

    section {
        padding: 5rem 5%;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    section > p {
        font-size: 1.05rem;
    }

    .page-header {
        min-height: calc(40vh + 80px);
        padding-top: 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .service-card {
        padding: 3rem 2rem;
    }

    .service-card h3 {
        font-size: 1.7rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .booking-embed {
        padding: 2rem 1.5rem;
    }

    .booking-alert {
        padding: 1.2rem 1.4rem;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-section h2 {
        font-size: 2.5rem;
    }

    .social-section p {
        font-size: 1.05rem;
    }
}
