/* ============================= */
/* Future Technologies Website - Style Sheet */
/* Team Members: [Your Team Names] */
/* Date: [Current Date] */
/* Filename: style.css */
/* ============================= */

/* ===== CSS Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* ===== Body & Wrapper ===== */
body {
    background-color: #8ac6e8;
}

#wrapper {
    background-color: white;
    padding: 2em;
    width: 80%;
    margin: 0 auto;
}

/* ===== Header ===== */
header {
    background-color: #0056b8;
    padding: 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    height: 100px;
}

header .brand {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
}

/* ===== Navigation ===== */
nav {
    background-color: black;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav li {
    flex-grow: 1;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    text-align: center;
    font-weight: bold;
}

nav a:hover {
    background-color: lightgrey;
    color: black;
}

/* ===== Responsive Images ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Card Container ===== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.card-container a {
    text-decoration: none;
    color: black;
    border: 3px solid black;
    padding: 20px;
    display: block;
    border-radius: 15px;
    text-align: center;
    transition: border-radius 0.125s, background-color 0.3s;
}

.card-container a:hover {
    border-radius: 0px;
    background-color: #8ac6e8;
}

.card-container div .arrow {
    display: none;
    font-weight: bolder;
    font-size: 50px;
}

.card-container a:hover .arrow {
    display: block;
}

/* ===== Footer ===== */
footer {
    height: auto;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 2em;
}
