/* 
   Pure Orchids Miami - Baseplate Styles
   Theme: Clean, Modern, Luxury, Soft Floral
*/

:root {
    /* Color Palette */
    --color-bg-primary: #FFFCFA;
    /* Warm White / Cream */
    --color-bg-secondary: #F7F5F2;
    /* Light Gray/Beige for sections */
    --color-sage: #8A9A5B;
    /* Muted Sage Green - Primary Accent */
    --color-sage-dark: #6E7D47;
    /* Darker Sage for hover states */
    --color-blush: #E6D0CE;
    /* Subtle Blush Pink - Secondary Accent */
    --color-text-main: #3D3D3D;
    /* Soft Black for readability */
    --color-text-light: #757575;
    /* Gray for secondary text */
    --color-white: #FFFFFF;

    /* Typography */
    /* Cormorant Garamond for Headings (Upscale, Editorial feel) */
    --font-heading: 'Cormorant Garamond', serif;
    /* Montserrat for Body (Clean, Modern, Legible) */
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-main);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.narrow-container {
    max-width: 800px;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.center-text {
    text-align: center;
}

.subheading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-sage);
    margin-bottom: var(--spacing-sm);
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-white);
    color: var(--color-text-main);
}

.btn-submit {
    padding: 14px 34px;
    background-color: var(--color-sage);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-sage-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 252, 250, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--color-text-main);
    font-weight: 600;
}

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* Video Background Setting */
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay for better text readability on video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-main);
}

/* Animations (Simple Fade Ins) */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1.5s ease-out 0.5s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1.5s ease-out 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Gallery Section */
.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.gallery-item {
    /* Card Styling */
    position: relative;
    cursor: pointer;
    background-color: #fff;
    /* Distinct card background */
    padding: 1rem;
    /* Frame the image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Grid sizing */
    width: 100%;
    aspect-ratio: 1 / 1.25;
    /* Consistent height for all cards */
}

.gallery-item:hover {
    transform: translateY(-5px);
    /* Lift effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Thumbnail Styling */
.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay::after {
    content: "View Gallery";
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 1px solid #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* --- Modal / Lightbox Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: transparent !important;
    background: none !important;
    width: auto;
    max-width: 90%;
    padding: 0;
    position: relative;
    border-radius: 0;
    text-align: center;
    box-shadow: none !important;
}

.close-btn {
    position: absolute;
    top: -50px;
    /* Moved slightly higher */
    right: 0;
    font-size: 2.5rem;
    background: none !important;
    border: none;
    cursor: pointer;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Shadow for visibility */
    z-index: 2001;
    transition: transform 0.2s;
}

.close-btn:hover {
    transform: scale(1.1);
}

.modal-header h3 {
    display: none;
    /* Hide title in modal for cleaner look, user asked to remove text */
}

.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 1rem;
    background: transparent !important;
}

.modal-image-box {
    flex: 1;
    height: auto;
    min-height: 200px;
    background-color: transparent !important;
    background: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none !important;
    border: none !important;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
    /* Circular buttons */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: #fff;
}

.modal-footer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #aaa;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    background: var(--color-bg-primary);
    padding: var(--spacing-md);
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: var(--color-text-light);
}

.social-placeholders {
    margin-top: 2rem;
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #2A2A2A;
    color: #fff;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-brand h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #999;
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 2rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

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

    .split-layout {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        /* Hidden on mobile for baseplate simplicity */
    }

    .navbar {
        justify-content: center;
    }
}