
/* CSS Variables */
:root {
    --rose-white: #f3eee7;
    --slate-grey: #202020;
    
    /* Font families */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Raleway', sans-serif;
    
    /* Font weights (optional but recommended) */
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    
    --navbar-height: 90px;
    --transition-ease: ease-out;
    --fade-duration: 1.5s;
    --video-fade-out: 0.3s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--rose-white);
    color: var(--slate-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--fade-duration) var(--transition-ease), 
    transform var(--fade-duration) var(--transition-ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background-color: var(--rose-white);
    z-index: 1000;
    transition: all 0.3s var(--transition-ease);
}

.nav-container {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.nav-brand h1 {
    color: var(--slate-grey);
    font-size: 2.5rem;
    font-weight: 200;
    text-align: center;
    font-family: var(--font-primary);
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--slate-grey);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    font-family: var(--font-secondary);
    transition: opacity 0.3s var(--transition-ease);
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--slate-grey);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--slate-grey);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav-link {
    color: var(--rose-white);
    text-decoration: none;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    border-bottom: 1px solid rgba(243, 238, 231, 0.2);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Video Section */
.video-section {
    margin-top: var(--navbar-height);
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.promotional-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity var(--video-fade-out) var(--transition-ease);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.play-button {
    background-color: rgba(32, 32, 32, 0.8);
    color: var(--rose-white);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
}

.play-button:hover {
    background-color: var(--slate-grey);
    transform: scale(1.1);
}

/* Information Section */
.information-section {
    padding: 80px 0;
}

.modals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.modal-card {
    background: white;
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-card:hover {
    transform: translate(8px, -8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modal-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.modal-card-content {
    padding: 25px;
}

.modal-card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--slate-grey);
    font-family: var(--font-primary);
}

.modal-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-grey);
    font-family: var(--font-secondary);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--slate-grey);
    font-family: var(--font-primary);
}

.appointment-button {
    display: block;
    margin: 0 auto 40px;
    background-color: var(--slate-grey);
    color: var(--rose-white);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
}

.appointment-button:hover {
    background-color: rgba(32, 32, 32, 0.8);
    transform: translateY(-2px);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--transition-ease);
}

.accordion-content.active {
    max-height: 2000px;
}

.pricing-info {
    background-color: var(--rose-white);
    padding: 30px;
    margin-bottom: 30px;
}

.pricing-info h3, .pricing-info h4 {
    color: var(--slate-grey);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.pricing-info h3 {
    font-size: 1.6rem;
}

.pricing-info h4 {
    font-size: 1.3rem;
    margin-top: 25px;
}

.pricing-info p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-family: var(--font-secondary);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--slate-grey);
    font-family: var(--font-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    background-color: var(--rose-white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s var(--transition-ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--slate-grey);
}

.submit-button {
    background-color: var(--slate-grey);
    color: var(--rose-white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
    display: block;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: rgba(32, 32, 32, 0.8);
    transform: translateY(-2px);
}

/* Venue Section */
.venue-section {
    padding: 80px 0;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.venue-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--slate-grey);
    font-family: var(--font-primary);
}

.venue-block p {
    line-height: 1.6;
    color: var(--slate-grey);
    font-family: var(--font-secondary);
}

.map-container {
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--slate-grey);
    color: var(--rose-white);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}

.footer-right {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--rose-white);
    transition: opacity 0.3s var(--transition-ease);
}

.social-link:hover {
    opacity: 0.7;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--rose-white);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s var(--transition-ease);
}

@keyframes modalFadeIn {
    from {
    opacity: 0;
    transform: scale(0.9);
    }
    to {
    opacity: 1;
    transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--slate-grey);
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding: 40px;
}

.modal-body img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
}

.modal-body h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--slate-grey);
    font-family: var(--font-primary);
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--slate-grey);
    font-family: var(--font-secondary);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        justify-content: flex-start;
    }

    .nav-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-left, .nav-right {
    display: none;
    }

    .hamburger {
    display: flex;
    }

    .mobile-menu.active {
    display: flex;
    }

    .nav-brand h1 {
    font-size: 1.4rem;
    }

    /* Video Section */
    .video-container {
    height: 50vh;
    min-height: 300px;
    }

    .play-button {
    width: 50px;
    height: 50px;
    min-height: 300px;
    }
    
    .play-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    }
    
    /* Information Section */
    .modals-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    }
    
    .modal-card:hover {
    transform: translate(4px, -4px);
    }
    
    /* Contact Section */
    .section-title {
    font-size: 2rem;
    }
    
    .appointment-button {
    padding: 12px 30px;
    font-size: 1.1rem;
    }
    
    /* Venue Section */
    .venue-content {
    grid-template-columns: 1fr;
    gap: 40px;
    }
    
    /* Footer */
    .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    }
    
    /* Modal */
    .modal-body {
    padding: 30px 20px;
    }
    
    .modal-body h2 {
    font-size: 1.6rem;
    }
    
    .modal-body img {
    height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
    padding: 0 15px;
    }
    
    .section-title {
    font-size: 1.8rem;
    }
    
    .modal-card-content {
    padding: 20px;
    }
    
    .modal-card-content h3 {
    font-size: 1.2rem;
    }
    
    .pricing-info {
    padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
    padding: 10px;
    }
}