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

/* GLOBAL */
body {
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #111;
    -webkit-user-select: none;
    user-select: none;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.logo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.2s;
}

nav a:hover {
    opacity: 0.7;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: #111;
    color: white;
}

.hero-inner {
    max-width: 750px;
}

.hero-text-box h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 10px 0;
}

.hero-description {
    margin-top: 12px;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 800;
}

/* BUTTONS */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.primary-btn {
    background: white;
    color: black;
}

.outline-btn {
    border: 1px solid white;
    color: white;
    margin-left: 10px;
}

/* SECTIONS */
.section {
    padding: 100px 40px;
}

.section-heading {
    margin-bottom: 50px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-heading h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-top: 5px;
}

.section-heading .eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}


/* CARDS */
.cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    border-radius: 14px;
    background: #f7f7f7;
}

.card h3 {
    font-size: 1.35rem;
    font-weight: 800;
}

.card-text {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 12px 0;
    line-height: 1.5;
}

.featured-card {
    background: #111;
    color: white;
}

/* ABOUT */
.about-section {
    padding: 80px 40px;
}

.about-card {
    max-width: 1000px;
    margin: auto;
    background: #111;
    color: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 2;
    line-height: 1.6;
    opacity: 0.95;
    font-size: 1.05rem;
    font-weight: 500;
}

/* BIGGER VIDEO PREVIEWS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 25px;
}

.video-card {
    width: 100%;
    aspect-ratio: 4 / 3; /* was 16/9 */
    border-radius: 18px;
    overflow: hidden;
    background: black;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACT */
.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

input, textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contact-info {
    margin-top: 20px;
    font-weight: 600;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #111;
    color: white;
}
