/* General CSS styles for premium design styling */
:root {
    --primary-color: #a38350;
    --secondary-color: #1a1a1a;
    --bg-light: #f9f8f5;
    --bg-dark: #121212;
    --text-color: #333333;
    --text-muted: #666666;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.py-large { padding: 100px 0; }
.max-width-md { max-width: 800px; margin-left: auto; margin-right: auto; }
.bg-light { background-color: var(--bg-light); }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

p {
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 400;
}

.subtitle {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Header Styles */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a.active, .nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    opacity: 0.9;
}

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

.burger-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Hero Styling */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.75);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.8rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #8c6f41;
    border-color: #8c6f41;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
}

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

.btn-full { width: 100%; }

/* Layout Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

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

/* Cards & Sections */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1.5rem;
}

.card-v2 {
    background-color: #ffffff;
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.card-icon .bullet {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

.cta-block {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.cta-block h2 {
    color: #ffffff;
}

/* Blog specific classes */
.article-card {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.article-card-content {
    padding: 25px;
}

.category-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.read-more-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}

.article-hero-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input { width: auto; margin-top: 4px; }

/* Cookie Policy & Legal Pages */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-table th, .legal-table td {
    border: 1px solid #eae|ae;
    padding: 12px;
    text-align: left;
}

.legal-table th {
    background-color: var(--bg-light);
}

/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 450px;
    background-color: #ffffff;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 25px;
    border-radius: 6px;
    z-index: 10000;
    display: none;
}

.cookie-banner h3 { font-size: 1.25rem; font-family: var(--font-serif); margin-bottom: 10px; }
.cookie-banner p { font-size: 0.85rem; margin-bottom: 15px; color: var(--text-muted); }

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 8px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    border-radius: 3px;
}

.btn-cookie-primary { background-color: var(--primary-color); color: #ffffff; }
.btn-cookie-secondary { background-color: #eee; color: #333; }

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: #e0e0e0;
    padding: 70px 0 30px 0;
    font-size: 0.9rem;
}

.main-footer a { color: #aaaaaa; }
.main-footer a:hover { color: #ffffff; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about .logo {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

/* Responsive Styling */
@media(max-width: 900px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .burger-btn { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .nav-menu.active { display: flex; }
    h1 { font-size: 2.5rem; }
}
