@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --primary-red: #D32F2F;
    --primary-red-glow: rgba(211, 47, 47, 0.4);
    --bg-black: #0A0A0A;
    --bg-surface: #121212;
    --bg-card: #1A1A1A;
    --text-white: #FFFFFF;
    --text-grey: #A0A0A0;
    --text-dim: #666666;
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-glow: 1px solid rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.text-red {
    color: var(--primary-red);
}

/* Header & Nav */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: var(--border-glow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 900;
}

.logo span {
    color: var(--primary-red);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-red);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-black);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 30px;
}

.mobile-nav-list a {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-slogan {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.2s;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.4s;
}

.hero-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

.hero-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
}

.hero-contact i {
    color: var(--primary-red);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #B71C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-black);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 15px auto 0;
}

/* Grid Components */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Categories (The Red Circles) */
.category-card {
    text-align: center;
    padding: 20px;
    background: var(--bg-surface);
    border-radius: 12px;
    border: var(--border-glow);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    background: var(--bg-card);
}

.circle-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 50%;
    padding: 10px;
    border: 2px dashed rgba(211, 47, 47, 0.3);
    transition: var(--transition-smooth);
}

.category-card:hover .circle-wrapper {
    border-style: solid;
    border-color: var(--primary-red);
    transform: rotate(5deg);
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-red);
}

.cat-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.cat-tag {
    color: var(--text-grey);
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.cat-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cat-view-btn {
    padding: 10px;
    font-size: 11px;
}

/* Profile Section */
.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.profile-content p {
    color: var(--text-grey);
    margin-bottom: 25px;
    font-size: 17px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    border-left: 2px solid var(--primary-red);
    padding-left: 20px;
}

.stat-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-white);
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-img-container {
    position: relative;
}

.profile-img-container img {
    border-radius: 12px;
    box-shadow: 20px 20px 0 var(--bg-card);
    border: var(--border-glow);
}

/* Footer */
.footer {
    background-color: var(--bg-surface);
    padding: 80px 0 40px;
    border-top: var(--border-glow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text-grey);
    font-size: 15px;
}

.footer-heading {
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--text-white);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 13px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Grid & Cards */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-grey);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.product-card {
    background: var(--bg-surface);
    border-radius: 12px;
    overflow: hidden;
    border: var(--border-glow);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(211, 47, 47, 0.5);
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-cat {
    display: block;
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    color: var(--text-white);
}

/* Form Styling */
.form-input:focus {
    outline: none;
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 10px var(--primary-red-glow);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-contact {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list {
        display: none;
        /* Mobile menu logic in JS */
    }

    .menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}