/* Base Styles */
:root {
    --primary-color: #6e3e3e;
    --secondary-color: #f3c6c6;
    --accent-color: #d4a6a6;
    --dark-color: #3a2020;
    --light-color: #fff9fa;
    --text-color: #333;
    --gray-color: #777;
    --success-color: #4CAF50;

    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;

    --transition: all 0.3s ease;
    --border-radius: 4px;
    --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem 0 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header .divider {
    margin: 1rem auto 2rem;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.logo p {
    font-size: 0.8rem;
    color: var(--gray-color);
    font-style: italic;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/background1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: var(--light-color);
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(110, 62, 62, 0.7);
    border-radius: var(--border-radius);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.hero-content h1 {
    font-size: 4.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-content .divider {
    margin: 1rem auto 2rem;
    background-color: var(--light-color);
}

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

.hero-content .btn {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
}

.hero-content .btn:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.service-tabs {
    margin-bottom: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background-color: #f0e4e4;
    border: none;
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-family: var(--body-font);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tab {
    display: none;
}

.tab.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.price-list {
    max-width: 600px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--accent-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .service {
    font-weight: 500;
}

.price-item .price {
    font-weight: 600;
    color: var(--primary-color);
}

.service-notice {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f9f0f0;
    border-radius: var(--border-radius);
}

.service-notice p {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.service-types {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.service-types h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-types ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-types li {
    font-weight: 500;
    color: var(--dark-color);
    padding: 0.5rem;
    position: relative;
}

.service-types li::before {
    content: '•';
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.service-types .btn {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: #f9f4f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Booking Section */
.booking {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
}

.booking .section-header h2 {
    color: var(--light-color);
}

.booking .divider {
    background-color: var(--accent-color);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.booking-info {
    padding-right: 2rem;
}

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

.booking-info p {
    margin-bottom: 2rem;
    color: #ddd;
}

.contact-info {
    margin-top: 2rem;
}

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

.contact-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.booking-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.contact .contact-item {
    flex-direction: column;
    text-align: center;
    background-color: #f9f0f0;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact .contact-item i {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact .contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.social-media {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.5rem;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--light-color);
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

#bookingSummary {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f9f0f0;
    border-radius: var(--border-radius);
}

#bookingSummary p {
    margin-bottom: 0.5rem;
}

#closeModal {
    display: block;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-info {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--light-color);
        width: 100%;
        padding: 2rem 0;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        gap: 1rem;
    }

    .menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-types ul {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
    }
}
