/* ------------------------------
   GLOBAL STYLES
--------------------------------*/
body {
    margin: 0;
    font-family: "Inter", "Lato", "Montserrat", sans-serif;
    color: #333;
    background: #f7f9fc;
    line-height: 1.6;
}

h1, h2 {
    margin-top: 0;
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    position: relative;
    height: 80vh;
    background: url('skyway.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 95, 153, 0.55); /* Skyway blue overlay */
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

/* ------------------------------
   BUTTONS
--------------------------------*/
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
}

.primary {
    background: #f4c542;
    color: #003f66;
}

.secondary {
    background: #005f99;
    color: white;
}

.btn:hover {
    opacity: 0.85;
}

/* ------------------------------
   CONTACT LINKS SECTION
--------------------------------*/
.contact-links {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #005f99;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item:hover {
    opacity: 0.8;
}

/* ------------------------------
   CONTENT SECTIONS
--------------------------------*/
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.about, .featured, .interests {
    background: white;
    margin-bottom: 40px;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.interests ul {
    list-style: none;
    padding: 0;
}

.interests li {
    margin-bottom: 15px;
}

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

footer a {
    color: #f4c542;
    font-weight: 600;
}

footer a:hover {
    opacity: 0.8;
}