/* --- Reset & Variables --- */
:root {
    --burgundy: #900C3F;
    --burgundy-dark: #580024;
    --blush: #FFD6E0;
    --blush-light: #FFF0F3;
    --cream: #FFFBF0;
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(144, 12, 63, 0.08);
    --radius: 12px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--burgundy);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn-secondary:hover {
    background-color: var(--blush);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--burgundy);
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 251, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
}

.logo-accent {
    color: var(--blush);
    background: var(--burgundy);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--burgundy);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--burgundy);
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.tagline {
    display: inline-block;
    background-color: var(--blush);
    color: var(--burgundy);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    z-index: 1;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-image-secondary {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 55%;
    z-index: 2;
    border: 8px solid var(--cream);
    box-shadow: var(--shadow);
}

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

.floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--burgundy);
    z-index: 3;
}

/* --- Sections General --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* --- About --- */
.about {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--burgundy);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* --- Environment --- */
.environment {
    background-color: var(--burgundy);
    color: var(--white);
}

.environment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.environment h2 {
    color: var(--white);
}

.environment p {
    color: rgba(255, 255, 255, 0.8);
}

.environment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.environment-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.environment-images img:hover {
    opacity: 1;
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item a {
    color: var(--text-dark);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.success-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--blush-light);
    border-radius: var(--radius);
    color: var(--burgundy);
    font-weight: 700;
}

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

.footer h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--blush);
}

.footer-copy p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    h1 { font-size: 2.5rem; }
    
    .hero-container,
    .about-container,
    .environment-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .hero-image-secondary {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cream);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
}
