/* External CSS File */
/* Drone Services LLC - 2026 */

:root {
    --primary: #2E7599;
    --accent: #7FCAF0;
    --light: #E0FFF3;
}

body {
    font-family: Corbel, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: center;
	background-color: transparent;
	background-image: url("images/looping_storm.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

header {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: var(--accent);
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: white;
}

/* Responsive Grid - Requirement #12 */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

/* Image Gallery - Extra Credit #1 */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    background: var(--primary);
    color: white;
    margin-top: 20px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }
}