/* --- Global Styles & Variables --- */
:root {
    --primary-color: #B76E79; /* Rose Gold */
    --secondary-color: #F9E4E8; /* Light Pink */
    --accent-color: #E6E6FA; /* Lavender */
    --text-color: #333;
    --white-color: #fff;
    --heading-font: 'Great Vibes', cursive;
    --body-font: 'Poppins', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: normal;
}

h1 { font-size: 5rem; }
h2 { font-size: 3.5rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 2.5rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #a55d67;
}

.hidden { 
    display: none; 
}

/* --- Header & Navigation --- */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 800;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

header .logo {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: bold;
}

header ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

header ul a {
    font-weight: 600;
    transition: color 0.3s;
}

header ul a:hover, 
header ul a.active {
    color: #a55d67;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
}

/* --- Hero Section --- */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero .address {
    font-size: 1.2rem;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

/* --- About Section --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.about-text {
    flex: 1;
}
.about-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.about-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-features strong {
    color: var(--primary-color);
}

/* --- Services Section --- */
#services {
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card .price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
    display: block;
}

/* --- Gallery Section --- */
#gallery {
    background-color: var(--accent-color);
}

.subtitle {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 40px auto;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(183, 110, 121, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery-overlay span {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* --- Contact & Booking Section --- */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
}

.confirmation-message {
    margin: 15px 0;
    font-size: 14px;
    background: rgba(183, 110, 121, 0.05);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(183, 110, 121, 0.2);
    color: var(--primary-color);
}

.confirmation-message p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.confirmation-message i {
    font-size: 1.2rem;
}

/* Form message styles */
#form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

#form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- Floating Button & Modal --- */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1001;
    transition: background 0.3s, transform 0.3s;
}

.floating-btn:hover {
    background: #a55d67;
    transform: translateY(-3px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease-in-out;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover, 
.close-btn:focus {
    color: black;
}

#bookingForm input, 
#bookingForm select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #4a5b6d 100%);
    color: var(--white-color);
    padding: 10px 0 5px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e0a899, var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 0 20px;
    position: relative;
}

.footer-section h3 {
    color: var(--white-color);
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s;
}

.footer-section ul li:hover::before {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.4);
}

.social-links a:hover::before {
    left: 100%;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer decorative elements */
.footer-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.footer-decoration.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 20px solid var(--primary-color);
    right: -100px;
    bottom: -100px;
}

.footer-decoration.curve {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 15px solid transparent;
    border-top-color: var(--primary-color);
    left: -50px;
    top: -50px;
    transform: rotate(45deg);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    /* Base adjustments */
    html {
        font-size: 14px;
    }
    
    /* Header & Navigation */
    header nav {
        height: 60px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Hero section */
    .hero {
        min-height: 400px;
        margin-top: 60px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    /* About section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-photo {
        width: 200px;
        height: 200px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form input, 
    .contact-form select {
        padding: 12px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul li {
        padding-left: 0;
    }
    
    .footer-section ul li::before {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
}