/* Typography */
body {
    font-family: 'Playfair Display', serif;
    background-color: #EFEBE5;
    color: #2E2E2E;
}

.hero-header {
    background: url('sea-1171664_1920.jpg') center 65% / cover no-repeat;
    height: 100vh;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .hero-header {
        height: 100vh;
    }

    .position-relative h1.display-1 {
        font-size: 3rem !important;
    }
  
    .position-relative p.fs-3 {
        font-size: 2rem !important;
    }

    header .btn {
        font-size: 1rem !important;
    }

    .hero-header .d-flex {
        padding-top: 5rem; /* pushes content down */
    }
    
}

/* Navbar */
.navbar, footer {
    background-color: #304254 !important;
}

.custom-navbar {
    background-color: #304254;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #F2B233 !important;
    font-weight: bold;
}

.navbar .nav-link:hover {
    color: #FFFFFF !important;
}

/* Hero Section */
header {
    color: #FFFFFF;
}

header h1,
header p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}



/* Buttons */
.btn-primary {
    background-color: #304254;
    color: #FFFFFF;
    border: none;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #F2B233;
    color: #304254;
}

/* Cards */
.card {
    background-color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-title {
    color: #304254;
}

.card-text {
    color: #2E2E2E;
}

/* Section Backgrounds */
.section-light {
    background-color: #EFEBE5;
}

.section-blue {
    background-color: #8CAABF;
    color: #FFFFFF;
}

.section-blue h1,
.section-blue h2,
.section-blue p {
    color: #FFFFFF;
}

/* Footer */
footer {
    font-family: 'Playfair Display', serif;
}

footer a {
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    color: #F2B233;
}

/* Contact Section */
#contact .bg-white {
    background-color: #FFFFFF !important;
}

/* General Link Styling */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Image Handling in Cards */
.card img {
    height: 100% !important;
    width: 100%;
    object-fit: contain;
}
