@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

.ec-root {
    --bg-color: #fcfbf9; /* Softer, premium off-white */
    --text-color: #4a4a4a;
    --primary-color: #3b2a22; /* Deep, rich dark brown */
    --accent-color: #c0965c;  /* Elegant soft gold */
    --white: #ffffff;
    --light-gray: #f4f2ee;
    --dark-gray: #1a1a1a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

.ec-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.ec-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.ec-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Banner */
.ec-top-banner {
    background-color: var(--light-gray);
    color: var(--text-color);
    text-align: center;
    font-size: 13px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Header */
.ec-header {
    background-color: var(--bg-color);
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ec-logo-text {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* Typography */
.ec-h1, .ec-h2, .ec-h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0;
}

.ec-h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ec-h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.ec-h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.ec-p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-color);
    font-weight: 300;
}

/* Hero Section */
.ec-hero {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
}

/* Images */
.ec-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.ec-img-feature {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Buttons */
.ec-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

.ec-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.ec-btn-large {
    padding: 20px 60px;
    font-size: 18px;
    margin: 40px auto;
    display: table;
}

/* Sections */
.ec-section {
    padding: 100px 0;
}
.ec-section-alt {
    background-color: var(--white);
}

/* Grid & Layout */
.ec-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.ec-col-half {
    flex: 1 1 calc(50% - 30px);
    min-width: 320px;
}

.ec-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.ec-feature-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Table */
.ec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 16px;
}
.ec-table th, .ec-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ec-table th {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

/* Lists */
.ec-list-pros-cons {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}
.ec-list-box {
    flex: 1;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.ec-list-box h3 {
    margin-top: 0;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 15px;
}
.ec-list-box ul {
    list-style: none;
    padding: 0;
}
.ec-list-box li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}
.ec-list-box.pros li::before {
    content: '✓';
    color: #4a8c52;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.ec-list-box.cons li::before {
    content: '−';
    color: #c95c5c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ */
.ec-faq {
    margin: 40px 0;
}
.ec-faq-item {
    margin-bottom: 30px;
}
.ec-faq-q {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Alert */
.ec-alert {
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 20px 30px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 40px;
    font-size: 15px;
    font-style: italic;
}

/* Footer */
.ec-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.ec-footer-links {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ec-footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.ec-footer-link:hover {
    color: var(--accent-color);
}

.ec-disclosure {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Utilities */
.ec-text-center { text-align: center; }
.ec-mt-20 { margin-top: 20px; }
.ec-mb-20 { margin-bottom: 20px; }
.ec-mb-40 { margin-bottom: 40px; }
.ec-fw-bold { font-weight: 600; }

@media (max-width: 768px) {
    .ec-h1 { font-size: 36px; }
    .ec-h2 { font-size: 28px; }
    .ec-grid { gap: 40px; }
    .ec-list-pros-cons { flex-direction: column; gap: 20px; }
    .ec-nav-links { display: none; width: 100%; flex-direction: column; text-align: center; gap: 15px; padding-top: 20px; }
    .ec-nav-links.active { display: flex; }
    .ec-cookie-content { flex-direction: column; text-align: center; }
}

/* Hamburger */
.ec-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.ec-hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .ec-hamburger { display: flex; }
    .ec-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .ec-hamburger.active span:nth-child(2) { opacity: 0; }
    .ec-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Navbar */
.ec-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ec-nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.ec-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.ec-nav-link:hover {
    color: var(--accent-color);
}

/* Preloader */
.ec-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.ec-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: ec-spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes ec-spin {
    to { transform: rotate(360deg); }
}

.ec-preloader-text {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    letter-spacing: 2px;
    animation: ec-pulse 1.5s ease-in-out infinite;
}

@keyframes ec-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Cookie Popup */
.ec-cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    z-index: 9998;
    padding: 20px 0;
    display: none;
}

.ec-cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ec-cookie-text {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 14px;
}

.ec-cookie-buttons {
    display: flex;
    gap: 10px;
}

.ec-btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hero Image Custom Size */
.ec-hero-img {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .ec-hero-img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .ec-nav-links {
        display: none;
    }
    .ec-nav-links.active {
        display: flex;
    }
}
