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

:root {
    --primary-red: #e60000;
    --dark-red: #b30000;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #fafafa;
    --medium-gray: #666666;
    --text-dark: #1a1a1a;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    letter-spacing: 0.5px;
}

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

/* Typography */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 10px rgba(230, 0, 0, 0.2);
    border-radius: 50%;
}

#backToTop:hover {
    background-color: var(--dark-red);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(230, 0, 0, 0.3);
}

/* Header and Navigation */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 100;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 20px 0;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-red);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

/* Fixed Header Book Button */
.header-book-btn {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 25px;
    border: 2px solid var(--primary-red);
}

.header-book-btn:hover {
    background-color: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Hero Section */
.hero {
    margin-top: 0;
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                linear-gradient(135deg, var(--black) 0%, var(--primary-red) 50%, var(--black) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 40px;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay h1 {
    font-size: 4.5em;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    animation: luxuryFadeIn 1.2s ease-out;
}

.hero-overlay p {
    font-size: 1.3em;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: luxuryFadeIn 1.2s ease-out 0.3s both;
}

/* Hero CTA with Red Button on Left */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: luxuryFadeIn 1.2s ease-out 0.6s both;
}

.cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.2);
}

.cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--black);
    letter-spacing: 2px;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-red);
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.service-card {
    background-color: var(--white);
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.service-icon {
    margin-bottom: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
    color: var(--medium-gray);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--primary-red);
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.price {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 600px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--black);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-slide:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-container:hover .carousel-button {
    opacity: 0.8;
}

.carousel-button:hover {
    background-color: var(--primary-red);
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Placeholder carousel backgrounds */
.carousel-slide:nth-child(odd) {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--black) 100%);
}

.carousel-slide:nth-child(even) {
    background: linear-gradient(135deg, var(--black) 0%, var(--primary-red) 100%);
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2em;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 300;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature span:last-child {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-block,
.hours-block {
    margin-bottom: 50px;
}

.info-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 300;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
    font-weight: 300;
    border-radius: 5px;
}

.hours-row:hover {
    background-color: var(--primary-red);
    color: var(--white);
    padding-left: 30px;
}

/* Contact Social Section */
.contact-social {
    text-align: center;
    padding: 50px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.contact-social h3 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
}

.social-links.large-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-links.large-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.social-links.large-icons .social-icon svg {
    stroke: var(--primary-red);
    transition: all 0.3s ease;
}

.social-links.large-icons .social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
}

.social-links.large-icons .social-icon:hover svg {
    stroke: var(--white);
}

/* Contact Form */
.contact-form {
    background-color: var(--light-gray);
    padding: 50px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    background-color: var(--white);
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.contact-form button {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Map */
.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    border-radius: 10px;
    overflow: hidden;
}

.map-container:hover {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0;
}

.footer-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.social-icon {
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.social-icon:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

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

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
}

.footer p {
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 14px;
}

.footer-cta {
    margin-top: 30px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger {
    display: block;
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger .line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger .line:nth-child(1) { top: 0; }
.hamburger .line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger .line:nth-child(3) { bottom: 0; }

/* Active state - X icon */
.mobile-menu-toggle.active .line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 20px 40px;
}

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

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--primary-red);
    transform: translateX(10px);
}

.mobile-book-btn {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 30px;
    text-align: center;
    border-radius: 25px;
    margin-top: 20px;
    display: inline-block;
}

.mobile-book-btn:hover {
    background-color: var(--dark-red);
    transform: translateX(0) !important;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 2.5em;
    }

    .hero-overlay p {
        font-size: 1em;
    }

    .hero-cta {
        flex-direction: column;
        gap: 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        flex-direction: column;
        gap: 30px;
    }

    section h2 {
        font-size: 2.5em;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}