/* EternaOra Design System */

:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #2e4a3e; /* Emerald Green */
    --accent-color: #1a1a1a; /* Deep Black */
    --text-color: #333333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #121212;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s ease;
}

/* Global Class-based Styles */
.body-container {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-brand-span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.nav-link-item:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background-color: #b8962d;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: var(--text-light);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Content Sections */
.section-container {
    padding: 5rem 10%;
}

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

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

.content-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-paragraph {
    font-size: 1.1rem;
    color: #555;
}

.content-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Features List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Comparison Table */
.table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table-header {
    background-color: var(--accent-color);
    color: white;
    text-align: left;
}

.table-th {
    padding: 1.2rem;
    font-weight: 600;
}

.table-td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
}

.table-row-highlight {
    background-color: #f9f9f9;
}

.table-check {
    color: #27ae60;
    font-weight: bold;
}

.table-cross {
    color: #e74c3c;
    font-weight: bold;
}

/* Disclosure */
.disclosure-bar {
    background-color: #f0f0f0;
    padding: 1rem 5%;
    font-size: 0.85rem;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #ddd;
}

/* Footer */
.footer-main {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Contact Page specific */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.form-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 150px;
    font-family: var(--font-body);
}

.form-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-submit:hover {
    background-color: #b8962d;
}

/* Responsiveness Improvements */
@media (max-width: 1024px) {
    .section-container {
        padding: 4rem 5%;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .nav-brand {
        font-size: 1.5rem;
    }
    .nav-link-item {
        font-size: 0.85rem;
    }
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Prevent horizontal scroll */
.body-container, .main-wrapper {
    max-width: 100vw;
    overflow-x: hidden;
}

.content-image {
    max-width: 100%;
    height: auto;
}

