/* Root Variables */
:root {
    --main-color: white;
    --secondary-color: #333;
    --accent-color: #215e99;
    --background-light: #f8f9fa;
}

/* Global Styles */
body {
    color: var(--secondary-color);
    background-color: var(--main-color);
    font-family: 'Arial', sans-serif;
    padding-top: 56px;
}

/* Header */
header {
    width: 100%;
    padding: 10px 20px;
    background-color: var(--main-color);
    position: fixed;
    top: 0;
    z-index: 3;
}

.navbar-brand {
    color: var(--accent-color) !important;
}
.navbar-brand img {
    width: 80px;
    height: 80px;
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
}
.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Carousel */
.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-thumbnails img {
    cursor: pointer;
    border: 2px solid var(--background-light);
    transition: border-color 0.3s;
}
.carousel-thumbnails img.active {
    border-color: var(--accent-color);
}
.carousel-thumbnails img:hover {
    border-color: var(--accent-color);
}
.carousel-thumbnails .col-3 {
    padding: 5px;
}

/* Information Sections */
.boat-info,
.pricing-info {
    margin-bottom: 30px;
}

.boat-info p,
.pricing-info p {
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: var(--main-color);
    color: var(--secondary-color);
    padding: 20px 0;
    margin-top: 40px;
    text-align: left;
}

footer h4 {
    margin-bottom: 15px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--accent-color) !important;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: space-between;
}

.col-md-6 {
    width: 48%;
    text-align: left;
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
}

.f-l {
    text-align: right;
}

/* Buttons */
.btn-primary {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--secondary-color);
    transition: background-color 0.3s, color 0.3s;
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--main-color);
}

/* Titles */
.section-title {
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Forms */
.form-group label {
    font-weight: bold;
}

.form-control {
    border-radius: 0;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

/* Social Media */
.socials {
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: flex;
}

.social-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-button:hover .social-icon {
    transform: scale(1.1);
}

/* Cookie Consent Pop-Up */
.cookie-consent {
    position: fixed;
    padding: 20px;
    background-color: white;
    color: black;
    display: none;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent h2 {
    margin: 0 0 10px;
    font-size: 1.625em;
}

.cookie-consent p {
    font-size: 1em;
    line-height: 1.4em;
    margin: 0.9375em 0;
}

.cookie-consent a {
    color: #007bff;
}

.cookie-consent .cookie-options {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cookie-consent .cookie-options label {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cookie-option-detail {
    display: flex;
    flex-direction: column;
}
.cookie-option-detail h4 {
    font-size: 1em;
    margin: 0;
}
.cookie-option-detail p {
    font-size: 0.875em;
    margin: 0;
}

.cookie-consent .cookie-options input {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.cookie-consent .cookie-buttons {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.cookie-consent button {
    font-family: inherit;
    font-size: 1.25em;
    padding: 0.75em 2em;
    border-radius: 4px;
    width: 100%;
    border: 0;
    cursor: pointer;
}

.cookie-consent button.bg-green {
    background-color: #007bff !important;
}

.cookie-consent button.bg-grey {
    background-color: #f7f7f7 !important;
}

.cookie-consent button.c-white {
    color: white !important;
}

.cookie-consent .cookie-bottom-nav {
    width: 100%;
    margin-top: 20px;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent .cookie-bottom-nav a {
    font-size: 0.75em;
    color: #aaa !important;
}