html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.display-2, .display-3, .display-4 {
    font-weight: 900;
    line-height: 1.2;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.color-block {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.color-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn {
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    background-color: #f8f9fa;
}

.btn-dark:hover {
    background-color: #212529;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.navbar-nav .nav-link {
    margin-left: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

header {
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

section {
    position: relative;
}

section h2 {
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6f61, #ffd166);
}

ul {
    margin-left: 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

a {
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: none;
}

footer {
    border-top: 3px solid #333;
}

footer h5 {
    margin-top: 1rem;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff6f61 !important;
}

.cookie-banner {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container-fluid > .row > [class*='col-'] {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1.15rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .color-block {
        margin-bottom: 1rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    footer {
        font-size: 0.95rem;
    }

    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner .btn {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.75rem;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-section .row {
        min-height: auto;
    }

    .color-block {
        min-height: 200px !important;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    .container-fluid > .row > [class*='col-'] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Animation for sections */
section {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Color system utilities */
.text-primary {
    color: #ff6f61 !important;
}

.bg-primary {
    background-color: #ff6f61 !important;
}

.text-secondary {
    color: #ffd166 !important;
}

.bg-secondary {
    background-color: #ffd166 !important;
}

.text-success {
    color: #06d6a0 !important;
}

.bg-success {
    background-color: #06d6a0 !important;
}

.text-info {
    color: #118ab2 !important;
}

.bg-info {
    background-color: #118ab2 !important;
}

/* Image styling */
img {
    border-radius: 0;
    max-width: 100%;
    height: auto;
}

/* Link styling */
a {
    color: #118ab2;
}

a:hover {
    color: #ff6f61;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #ffd166;
}

/* Form elements */
input, textarea, select {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 10px 12px;
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #118ab2;
    box-shadow: 0 0 0 3px rgba(17, 138, 178, 0.1);
}

/* Print styles */
@media print {
    .navbar, footer, .cookie-banner {
        display: none;
    }
}
