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

html, body {
    height: 100%;
}

body {
    background-color: #1f1917;
    color: #d4d4d4;
    font-family: Georgia, serif;
    line-height: 1.6;
}

navbar {
    background-color: #2a2219 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    color: #f5e6d3;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    font-weight: bold;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    border-bottom: 2px solid #8b7355;
    padding-bottom: 10px;
}

h3 {
    font-size: 24px;
    margin-top: 20px;
    color: #d4af8f;
}

h4 {
    font-size: 18px;
    color: #d4af8f;
}

h5 {
    font-size: 16px;
    color: #d4af8f;
}

p {
    margin-bottom: 15px;
    color: #d4d4d4;
    line-height: 1.8;
}

a {
    color: #d4af8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e8c7a0;
    text-decoration: underline;
}

.navbar {
    background-color: #2a2219 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #d4af8f !important;
}

.navbar-nav .nav-link {
    color: #d4d4d4 !important;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4af8f !important;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 56px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #f5e6d3;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    color: #d4af8f;
}

.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 56px;
}

.page-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.page-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #f5e6d3;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.page-hero p {
    font-size: 18px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    color: #d4af8f;
}

main {
    flex: 1;
}

.content-section {
    padding: 80px 0;
    background-color: #1f1917;
}

.content-section.alt-bg {
    background-color: #2a2219;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="wood" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%232a2219"/><line x1="0" y1="0" x2="100" y2="0" stroke="%23361f16" stroke-width="0.5" opacity="0.3"/><line x1="0" y1="2" x2="100" y2="2" stroke="%23361f16" stroke-width="0.5" opacity="0.2"/><line x1="0" y1="5" x2="100" y2="5" stroke="%23361f16" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)"/></svg>');
}

.section-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    max-height: 500px;
    object-fit: cover;
}

.container {
    max-width: 1000px;
}

.btn-custom {
    background-color: #8b7355;
    border: 2px solid #d4af8f;
    color: #f5e6d3;
    padding: 12px 30px;
    font-size: 16px;
    font-family: Georgia, serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #6e5843;
    border-color: #f5e6d3;
    color: #f5e6d3;
    box-shadow: 0 0 15px rgba(212, 175, 143, 0.4);
    text-decoration: none;
}

.btn-custom:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 143, 0.6);
}

.btn-outline-secondary {
    background-color: transparent;
    border: 1px solid #666;
    color: #d4d4d4;
}

.btn-outline-secondary:hover {
    background-color: #3d3a37;
    color: #f5e6d3;
}

.contact-form {
    margin-top: 20px;
}

.form-control {
    background-color: #3d3a37;
    border: 1px solid #666;
    color: #d4d4d4;
    padding: 10px 15px;
    border-radius: 4px;
    font-family: Georgia, serif;
}

.form-control:focus {
    background-color: #3d3a37;
    border-color: #d4af8f;
    color: #d4d4d4;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 143, 0.25);
}

.form-control::placeholder {
    color: #999;
}

.form-group label {
    color: #d4af8f;
    font-weight: normal;
    margin-bottom: 8px;
}

.custom-control-label {
    color: #d4d4d4;
    margin-left: 8px;
}

.custom-control-label a {
    color: #d4af8f;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #8b7355;
    border-color: #d4af8f;
}

.contact-info {
    background-color: #2a2219;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d4af8f;
}

.contact-info h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 20px;
}

.footer {
    background-color: #1a1410;
    padding: 40px 0 20px 0;
    margin-top: 80px;
    border-top: 2px solid #8b7355;
}

.footer h5 {
    color: #d4af8f;
    margin-bottom: 20px;
}

.footer p {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: #d4af8f;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #f5e6d3;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2219;
    padding: 20px;
    border-top: 2px solid #d4af8f;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}

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

.cookie-content p {
    margin: 0;
    color: #d4d4d4;
    flex: 1;
}

.cookie-content button {
    margin-left: 10px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .page-hero {
        height: 300px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 14px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .content-section {
        padding: 40px 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content button {
        margin-left: 0;
        width: 100%;
    }
}
