:root {
    --primary-gold: #D4A574;
    --accent-warm: #F4E4C1;
    --text-dark: #2C2C2C;
    --text-gray: #5A5A5A;
    --bg-light: #FAFAF8;
    --white: #FFFFFF;
    --border-light: #E8E8E6;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

a:hover {
    color: #B8935F;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    color: var(--white);
    margin: 0;
}

.cookie-link {
    color: var(--accent-warm);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--white);
}

.site-header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8935F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.hero-section {
    position: relative;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(212, 165, 116, 0.2) 0%, rgba(244, 228, 193, 0.3) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
    padding: 3rem 0 2rem;
}

.hero-content h1 {
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content .lead {
    color: var(--text-gray);
    font-size: 1.25rem;
}

.page-header {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--bg-light) 100%);
    border-bottom: 2px solid var(--border-light);
}

.content-section {
    padding: 4rem 0;
}

.content-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.info-notice {
    background: linear-gradient(135deg, var(--accent-warm) 0%, #F9F2E3 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    margin-bottom: 2rem;
}

.info-notice p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-notice p:last-child {
    margin-bottom: 0;
}

.disclaimer-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-light);
    margin: 2rem 0;
}

.disclaimer-box h2,
.disclaimer-box h3 {
    color: var(--text-dark);
}

.disclaimer-box p,
.disclaimer-box ul {
    color: var(--text-gray);
}

.disclaimer-box ul {
    margin-left: 1.5rem;
}

.table {
    background: var(--white);
}

.table thead {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8935F 100%);
    color: var(--white);
}

.table thead th {
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background-color: var(--bg-light);
}

.table td {
    padding: 0.75rem 1rem;
    color: var(--text-gray);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8935F 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, #B8935F 0%, var(--primary-gold) 100%);
}

.btn-outline-primary {
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8935F 100%);
    color: var(--white);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--bg-light) 100%);
}

.contact-form .form-control {
    border: 2px solid var(--border-light);
    border-radius: 6px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.15);
}

.contact-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.site-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.site-footer p {
    color: #CCCCCC;
}

.site-footer a {
    color: var(--accent-warm);
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: var(--white);
    padding-left: 5px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-content {
        padding: 2rem 0 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .table {
        font-size: 0.875rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}
