:root {
    --adriatic-blue: #3498db;
    --adriatic-blue-dark: #2980b9;
    --adriatic-blue-light: #5dade2;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: #ffffff;
}

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

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

.cookie-banner p {
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--adriatic-blue-light);
    text-decoration: underline;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--adriatic-blue) !important;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--gray-800);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--adriatic-blue);
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.intro-section {
    background-color: #ffffff;
}

.content-section {
    background-color: #ffffff;
}

.bg-light {
    background-color: var(--gray-50) !important;
}

.section-title {
    color: var(--adriatic-blue);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--adriatic-blue) 0%, var(--adriatic-blue-light) 100%);
    border-radius: 2px;
}

.food-card {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.15);
}

.food-card h3 {
    color: var(--adriatic-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.fact-box {
    padding: 1.5rem;
    background: var(--gray-50);
    border-left: 4px solid var(--adriatic-blue);
    border-radius: 8px;
}

.fact-box h3 {
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-box {
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.3s ease;
    height: 100%;
}

.info-box:hover {
    border-color: var(--adriatic-blue-light);
}

.info-box h3 {
    color: var(--adriatic-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.disclaimer-box {
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    border: 2px solid var(--adriatic-blue-light);
    border-radius: 12px;
}

.disclaimer-box h2 {
    color: var(--adriatic-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.disclaimer-box h3 {
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.disclaimer-section {
    background-color: var(--gray-50);
}

.contact-info-box {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-details {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.contact-box {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.info-notice {
    padding: 2rem;
    background: #ffffff;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
}

.info-notice h3 {
    color: var(--adriatic-blue);
    font-weight: 600;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--adriatic-blue);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

.thank-you-box {
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--adriatic-blue) 0%, var(--adriatic-blue-dark) 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--adriatic-blue-dark) 0%, var(--adriatic-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.footer h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--adriatic-blue-light);
    text-decoration: none;
}

img.img-fluid.rounded {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        height: 400px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .food-card,
    .info-box,
    .disclaimer-box {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-image-wrapper {
        height: 300px;
    }
    
    .cookie-banner .col-md-3 {
        text-align: left !important;
        margin-top: 0.5rem;
    }
}
