* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: #0b0b0d;
    color: white;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.logo {
    font-weight: bold;
    color: #d9a441;
    font-size: 1.2rem;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-btn {
    background: #d9a441;
    padding: 10px 18px;
    border-radius: 30px;
    color: black !important;
    font-weight: bold;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/Hero\ Container.JPG") center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    max-width: 800px;
}

.badge {
    width: max-content;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero p {
    margin-top: 15px;
    color: #ccc;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #d9a441;
    padding: 12px 20px;
    border-radius: 30px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    border: 1px solid white;
    padding: 12px 20px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 80px 8%;
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.glass:hover {
    transform: translateY(-6px);
}

/* SECTIONS */
.section {
    padding: 80px 8%;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #d9a441;
}

.cards {
    font-size: 19px;

}

/* GALLERY */
.gallery {
    columns: 3 250px;
    gap: 15px;
}

.gallery img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

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

/* ABOUT */
.about p {
    max-width: 700px;
    margin: auto;
    text-align: center;
    color: #f6f6f6;
    line-height: 1.6;
    font-size: 19px;
}

/* CONTACT */
.contact {
    padding: 80px 8%;
    text-align: center;
}

form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input,
textarea {
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
}

textarea {
    height: 120px;
}

button {
    padding: 12px;
    border: none;
    background: #d9a441;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: black;
    color: #777;
}

/* MOBILE */
@media(max-width:768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav nav {
        display: none;
    }
}