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

:root {
    --primary-black: #000000;
    --accent-color: #D3B7A7;
    --white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.9);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-black);
    border-bottom: 1px solid rgba(211, 183, 167, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Image Styles */
img.landscape {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

img.portrait {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

/* Image Placeholders */
.image-placeholder {
    background-color: rgba(211, 183, 167, 0.1);
    border: 2px dashed var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
}

.image-placeholder.landscape {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.image-placeholder.portrait {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Quotes Section */
.quotes-section {
    padding: 4rem 2rem 2rem 2rem;
    background-color: rgba(211, 183, 167, 0.05);
}

.quotes-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

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

.quote-card {
    background-color: rgba(211, 183, 167, 0.08);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    background-color: rgba(211, 183, 167, 0.12);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Features Section */
.features-section {
    padding: 2rem 2rem 4rem 2rem;
}

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

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

.feature-item h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--accent-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Page Header */
.page-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Page */
.about-content {
    padding: 2rem;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--white);
    font-weight: 300;
    padding: 2rem;
    background-color: rgba(211, 183, 167, 0.1);
    border-left: 4px solid var(--accent-color);
}

/* Contact Page */
.contact-content {
    padding: 2rem;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: rgba(211, 183, 167, 0.1);
    border: 1px solid rgba(211, 183, 167, 0.3);
    color: var(--white);
    padding: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.submit-btn:hover:not(:disabled) {
    background-color: rgba(211, 183, 167, 0.9);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-message code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: flex-start;
}

/* Adjust reCAPTCHA iframe for dark theme */
.g-recaptcha iframe {
    filter: invert(1) hue-rotate(180deg);
}

/* Footer */
footer {
    margin-top: auto;
    background-color: rgba(211, 183, 167, 0.05);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(211, 183, 167, 0.2);
}

.footer-content p {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

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

    .quotes-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}


