:root {
    --primary: #1a1a1a;
    --secondary: #4a90e2;
    --accent: #f5a623;
    --text: #333;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    background: rgba(0,0,0,0.5);
}

section {
    padding: 80px 0;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.package:hover {
    transform: translateY(-5px);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

footer {
    background: var(--primary);
    color: white;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
}


/* Mine, above was Claude 3.5 :) */
ul ul li{
   margin-left: 1.125rem;
   font-size: 85%;
   color: slategrey;
}

/* Claude 3.5 nav styling snippet */
nav ul {
    list-style: none;
    padding: 0.25rem;
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 2.25rem;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}
nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 3px var(--primary);
    transform: scale(1.1);
}

nav{
    padding: 0 0.25rem;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.tidbit{
    font-weight: lighter;
    font-size: smaller;
}

.price{
    font-weight: bold;
}

.package h3{
    font-size: larger;
    font-weight: bolder;
}

.founder-img {
    margin-top: 0.5rem;
    border: 10px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding-bottom: 30px;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.founder-img:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transform: rotate(2deg) scale(1.05);
}

.founder-img img {
    max-width: 100%;
}

.package img {
    width: 69%;
    max-width: 256px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-me{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: xxx-large;
    font-weight: bolder;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
}

@media (max-width: 512px) {
    .tidbit {
        font-size: x-small;
    }
}

@media (max-width: 768px) {
    .package-grid {
        justify-items: center;
    }
}

.map {
    height: 210px;
    width: 369px;
    max-width: 100%;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Customize Leaflet controls */
.leaflet-control-attribution {
    font-size: 10px !important;
    background: rgba(255,255,255,0.7) !important;
}