/* style.css */
:root {
    --primary-color: #D4AFB9; /* Soft Vintage Pink */
    --secondary-color: #E2C2C6;
    --accent-color: #B76E79; /* Rose Gold */
    --bg-light: #FFFDFD;
    --bg-soft: #F9F3F4;
    --text-dark: #333333;
    --text-light: #777777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.padding-section {
    padding: 4rem 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 253, 253, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--accent-color);
}

.btn-book-nav {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-book-nav:hover {
    background: var(--text-dark);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 253, 253, 0.7), rgba(255, 253, 253, 0.9)), url('https://images.unsplash.com/photo-1516975080661-460d3fc3c22b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    position: relative;
}

.hero-content {
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.3);
    transition: 0.3s;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border-top: 3px solid var(--primary-color);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Brands Carousel */
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.carousel-track {
    display: inline-block;
    animation: scroll 15s linear infinite;
}

.brand-item {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0 2rem;
    font-style: italic;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testi-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1rem;
    color: var(--text-light);
}

/* Map */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.footer h2 span {
    color: var(--accent-color);
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    border-bottom: 1px solid var(--accent-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

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

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.modal-content h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0.5rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease;
}

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

/* Media Queries (Tablet & Desktop) */
@media (min-width: 768px) {
    .service-grid, .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 { font-size: 4rem; }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .testi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}