/* ==========================================
   SWAG STAR FILMS
   DARK CINEMATIC GOLD THEME
========================================== */

:root {
    --primary: #d4af37;
    --primary-light: #f0d77a;
    --secondary: #ff6b35;

    --dark: #0f0f0f;
    --dark-light: #181818;
    --dark-card: #1f1f1f;

    --white: #ffffff;
    --gray: #bdbdbd;
    --gray-light: #d8d8d8;

    --shadow:
        0 15px 40px rgba(0, 0, 0, .35);

    --gold-glow:
        0 0 10px rgba(212, 175, 55, .3),
        0 0 20px rgba(212, 175, 55, .2),
        0 0 40px rgba(212, 175, 55, .15);

    --transition: .4s ease;
}

/* ==========================================
   RESET
========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--gray);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: .85rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* ==========================================
   CONTAINER
========================================== */

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.section {
    padding: 110px 0;
}

.section-dark {
    background: var(--dark-light);
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    max-width: 800px;
    margin: auto;
}

/* ==========================================
   HEADER
========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .4s;
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
}

.header.scrolled {
    background: rgba(10, 10, 10, .95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.logo img {
    max-height: 55px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    position: relative;
    color: var(--white);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

/* ==========================================
   HAMBURGER
========================================== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: .3s;
}

/* ==========================================
   HERO
========================================== */

.hero,
.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, .7),
            rgba(0, 0, 0, .85)),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}

.page-hero {
    min-height: 70vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(212, 175, 55, .15),
            transparent 70%);
}

.hero-content,
.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1,
.page-hero h1 {
    max-width: 900px;
    margin: auto;
    margin-bottom: 25px;
}

.hero p,
.page-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 1.1rem;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================
   FLOATING LIGHTS
========================================== */

.floating-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
}

.light-1 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 15%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.light-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    right: -50px;
    bottom: 10%;
    animation: float 10s ease-in-out infinite;
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    color: #111;
    box-shadow: var(--gold-glow);
}

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

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

.btn-outline:hover {
    background: var(--primary);
    color: #111;
    transform: translateY(-5px);
}

/* ==========================================
   ABOUT PREVIEW
========================================== */

.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview p {
    margin-bottom: 20px;
}

/* ==========================================
   COMMON CARD
========================================== */

.service-card,
.feature-card,
.video-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    transition: .4s;
    box-shadow: var(--shadow);
}

.service-card:hover,
.feature-card:hover,
.video-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, .5);
    box-shadow: var(--gold-glow);
}

/* ==========================================
   KEYFRAMES
========================================== */

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* ==========================================
   SERVICES
========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: .95rem;
}

/* ==========================================
   FEATURES
========================================== */

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

.feature-card {
    padding: 35px;
    border-radius: 20px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* ==========================================
   VIDEO SECTION
========================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    overflow: hidden;
    border-radius: 20px;
}

.video-card iframe {
    width: 100%;
    height: 260px;
    border: none;
    display: block;
}

/* ==========================================
   STORY SECTION
========================================== */

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.story-content p {
    margin-bottom: 20px;
}

/* ==========================================
   FOUNDER SECTION
========================================== */

.founder-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, .4);
    box-shadow: var(--gold-glow);
    animation: founderFloat 8s ease-in-out infinite;
}

.founder-role {
    display: inline-block;
    margin: 15px 0;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.founder-content p {
    margin-bottom: 18px;
}

@keyframes founderFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }

}

/* ==========================================
   CONTACT PAGE
========================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    margin: 15px 0 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    align-items: flex-start;
}

.contact-item i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, .12);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: #111;
    transform: translateY(-5px);
}

.contact-form-container {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: none;
    outline: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: var(--transition);
}

.contact-form textarea {
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: var(--gold-glow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

/* ==========================================
   CTA SECTION
========================================== */

.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .08),
            rgba(255, 107, 53, .05));
}

.cta-section h2 {
    max-width: 850px;
    margin: auto;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 35px;
}

/* ==========================================
   FOOTER
========================================== */

.footer {
    background: #080808;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--gray);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
    padding: 25px 0;
    color: var(--gray);
}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

/* ==========================================
   PREMIUM REVEAL EFFECT
========================================== */

.section {
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, .03);
    filter: blur(120px);
    top: 0;
    right: 0;
    pointer-events: none;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:1100px) {

    .founder-section {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .about-preview {
        grid-template-columns: 1fr;
    }

}

@media (max-width:900px) {

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

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

}

@media (max-width:768px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
        gap: 25px;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        min-height: 90vh;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .section {
        padding: 80px 0;
    }

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

    .video-card iframe {
        height: 220px;
    }

}

@media (max-width:500px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-form-container {
        padding: 25px;
    }

}

/* ==========================
   YOUTUBE BUTTONS
========================== */

.youtube-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff0000 !important;
    font-weight: 600;
}

.youtube-nav-btn i {
    font-size: 1.1rem;
}

.youtube-nav-btn:hover {
    color: #ffffff !important;
}

.footer-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    margin-top: 10px;

    background: #ff0000;
    color: #fff;

    border-radius: 50px;
    font-weight: 600;

    transition: .4s ease;
}

.footer-youtube-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 25px rgba(255, 0, 0, .4);
}

.footer-youtube-btn i {
    font-size: 1.2rem;
}