:root {
    --primary-petrol: #004d4d;
    --accent-gold: #c5a059;
    --light-grey: #f4f4f4;
    --soft-rose: #fdf2f2;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--primary-petrol);
}

.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background-color: var(--text-light);
    border-bottom: 1px solid var(--light-grey);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-petrol) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 77, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Cards */
.info-card {
    border: none;
    background: var(--light-grey);
    border-radius: 0;
    transition: transform 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card img {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

/* Section Dominance */
.section-padding {
    padding: 100px 0;
}

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

.bg-petrol h2 {
    color: var(--text-light);
}

.btn-hyscura {
    background-color: var(--accent-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    transition: opacity 0.3s;
}

.btn-hyscura:hover {
    opacity: 0.9;
    color: white;
}

/* Disclaimer Blocks */
.disclaimer-box {
    background-color: var(--soft-rose);
    border-left: 5px solid var(--accent-gold);
    padding: 25px;
    margin: 40px 0;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--primary-petrol);
    color: var(--text-light);
    padding: 60px 0 20px;
}

footer a {
    color: var(--light-grey);
}

footer h3 {
    color: var(--accent-gold);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    text-align: center;
}

.cookie-btns .btn {
    margin: 5px;
    border-radius: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-padding { padding: 60px 0; }
}