/* Reset & basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #2E8B57;
    color: #fff;
    padding: 20px 0;
}

header .logo {
    float: left;
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('images/scottish-highlands.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    text-shadow: 2px 2px 6px #000;
}

.hero p {
    margin: 20px 0;
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px #000;
}

.btn {
    background: #FFD700;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #FFA500;
    color: #fff;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 60px 0;
}

.about {
    background: url('images/scottish-loch.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 4px #000;
}

.fleet, .booking, .contact, .gallery, .map {
    text-align: center;
}

/* Cards */
.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Booking / Contact forms */
.booking form, .contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

.booking input, .booking select, .contact input, .contact textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Map Section */
.map {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background: url('images/scottish-mountains.jpg') center/cover no-repeat;
}

.map::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

#googleMap {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #2E8B57;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    header nav {
        float: none;
        text-align: center;
        margin-top: 10px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}