/* Basic Reset & Variables */
:root {
    --primary-color: #0d1a2f; /* Dark Blue/Black */
    --secondary-color: #F8F8F8; /* Light Grey/Off-white */
    --accent-color: #C8A452; /* Gold/Metallic Gold */
    --text-color: #333;
    --light-text-color: #fff;
    --header-height: 80px;
    --container-width: 1200px;
    --section-padding: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #a0813f; /* Slightly darker gold on hover */
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.bg-accent {
    background-color: var(--accent-color);
    color: var(--light-text-color);
}

.text-center {
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3 {
    color: var(--light-text-color);
}

.bg-accent h1, .bg-accent h2, .bg-accent h3 {
    color: var(--light-text-color);
}

h1 {
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* For hero text */
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

b, strong {
    font-weight: 600;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 8px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}


/* --- Header --- */
.main-header {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between; /* Changed from 'space-between' to 'flex-end' if no nav */
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--light-text-color);
    letter-spacing: 1px;
}

/* Removed .main-nav styling as the element is removed */

.contact-header a {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-header a:hover {
    background-color: #a0813f;
    color: var(--light-text-color);
}

/* --- Hero Section --- */
.hero {
    background: url('https://via.placeholder.com/1920x800/333/fff?text=Kroovel+Hero+Image') no-repeat center center/cover; /* Placeholder */
    height: 500px; /* Adjusted height since no form */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 800px;
}


/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-secondary-light, .btn-cta {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #a0813f;
    color: var(--light-text-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary-light {
    background-color: var(--light-text-color);
    color: var(--primary-color);
    border: 1px solid var(--light-text-color);
}

.btn-secondary-light:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    margin: 10px;
    border: 2px solid var(--light-text-color);
}

.btn-cta:hover {
    background-color: var(--light-text-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}


/* --- Welcome Section --- */
.welcome-section p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    text-align: center;
    font-size: 1.1em;
}

/* --- Luxury Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
}

.service-card p {
    font-size: 0.95em;
    color: #555;
}

/* --- Fleet Showcase Grid --- */
.occasion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.occasion-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px; /* Added padding as no image to push content */
}

.occasion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.occasion-card h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-top: 15px;
    text-align: left;
}

.occasion-card p {
    font-size: 1em;
    color: #444;
    margin-bottom: 25px;
}

.occasion-card .btn-secondary {
    width: auto;
}


/* --- Air Sea Travel --- */
.air-sea-travel h2, .air-sea-travel p {
    color: var(--light-text-color);
}

.travel-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.travel-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 25px; /* Added padding as no image to push content */
}

.travel-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.15);
}

.travel-card h3 {
    color: var(--light-text-color);
    font-size: 1.6em;
    margin-top: 0;
    text-align: left;
}

.travel-card p {
    font-size: 1em;
    color: #ddd;
    margin-bottom: 25px;
}

.travel-card .btn-secondary-light {
    margin-top: auto; /* Push button to the bottom */
    align-self: flex-start;
    margin-bottom: 0; /* Adjusted as padding is on parent */
}


/* --- Commitment Section --- */
.commitment-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1em;
}

/* --- FAQ Section --- */
.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
}

.faq-item p {
    color: #555;
    font-size: 0.95em;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 30px 0;
    font-size: 0.9em;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.footer-nav a {
    color: var(--light-text-color);
    font-weight: 300;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--accent-color);
}


/* --- Media Queries for Responsiveness --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5em;
    }
    h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    /* Removed .main-nav styling as the element is removed */
    .contact-header {
        margin-top: 10px;
    }
    .hero {
        height: 400px; /* Further adjusted height */
    }
    .hero h1 {
        font-size: 2.8em;
    }
    .hero p {
        font-size: 1.2em;
    }
    h2 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.4em;
    }
    .services-grid, .occasion-grid, .travel-options-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    .footer-contact {
        text-align: center;
    }
    .btn-cta {
        display: block; /* Make buttons stack on small screens */
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    .hero h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
    h3 {
        font-size: 1.4em;
    }
    .section-padding {
        padding: 40px 0;
    }
}