* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-bottom: 1px solid #eee;
    color: white;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.brand img {
    height: 40px;
    margin-right: 10px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav a:hover {
    color: #1e5bff;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('../images/bimini_hero.png') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.light {
    background: #f7f9fc;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
}

.card p {
    padding: 0 15px 20px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* ABOUT */
.about-text {
    max-width: 800px;
    font-size: 18px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.contact-form button {
    padding: 15px;
    background: #1e5bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #1544c1;
}


/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px;
}
