:root {
    --primary-red: #D71212;
    /* Deep Chic Red */
    --dark-red: #660000;
    --bg-black: #050505;
    --text-white: #EDEDED;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Syncopate', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 100px;
}

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

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

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.cta-btn {
    border: 1px solid var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.cta-btn:hover {
    background: var(--primary-red);
    color: var(--bg-black) !important;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero_background_1769134285769.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
    filter: contrast(1.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.hero h1:hover {
    animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    cursor: default;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px var(--primary-red), 0 0 20px var(--primary-red);
        color: var(--text-white);
    }

    50% {
        text-shadow: 0 0 25px var(--primary-red), 0 0 50px var(--primary-red), 0 0 80px var(--dark-red);
        color: var(--primary-red);
    }
}

.subtitle {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0.5rem;
    animation: fadeIn 1.2s ease-out;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeIn 1.4s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 2s ease-out;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
}

/* Sections */
.vertical-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10%;
}

.vertical-section.reverse {
    justify-content: flex-end;
    text-align: right;
}

.vertical-section.reverse .content {
    align-items: flex-end;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) grayscale(20%);
    transition: filter 0.5s ease;
    z-index: -1;
}

.vertical-section:hover .bg-image {
    filter: brightness(0.8) grayscale(0%);
}

.blur-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    max-width: 600px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s ease;
}

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

.vertical-section.reverse .blur-card {
    align-items: flex-end;
}

.blur-card h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-red);
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--text-white);
}

.blur-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.explore-btn {
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--primary-red);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.explore-btn:hover {
    color: var(--primary-red);
    padding-right: 10px;
}

/* Framework Section (Advisory Model) */
.framework-section {
    padding: 8rem 10%;
    text-align: center;
    background-color: var(--bg-black);
    position: relative;
    z-index: 10;
}

.framework-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.framework-section .divider {
    margin: 0 auto 4rem auto;
    background-color: var(--primary-red);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.framework-step {
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    transition: all 0.3s ease;
    text-align: left;
}

.framework-step:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.03);
}

.step-number {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.framework-step h3 {
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.framework-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Footer */
footer {
    padding: 5rem 10%;
    background-color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
}

.footer-content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-content h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-style: italic;
}

.contact-form {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.contact-form input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: white;
    font-family: var(--font-body);
}

.contact-form button {
    background: var(--primary-red);
    border: none;
    color: white;
    padding: 0 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--dark-red);
}

.socials {
    display: flex;
    gap: 2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.consultation-note {
    font-size: 0.9rem;
    color: var(--primary-red);
    margin-top: -1rem;
    font-style: italic;
}

/* Background Utilities (Replacing Inline Styles) */
.bg-branding { background-image: url('assets/images/branding_section_bg.png'); }
.bg-security { background-image: url('assets/images/security_section_bg.png'); }
.bg-music { background-image: url('assets/images/music_section_bg_1769134299524.png'); }
.bg-cuisine { background-image: url('assets/images/food_section_bg_1769134312824.png'); }
.bg-writing { background-image: url('assets/images/writing_bg.png'); }
.bg-about { background-image: url('assets/images/about_section_bg.png'); }


/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    margin: 5px;
    transition: all 0.3s ease;
}

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

    .blur-card {
        padding: 2rem;
        width: 90vw;
    }

    .vertical-section {
        padding: 0 5%;
        justify-content: center !important;
    }

    .blur-card h2 {
        font-size: 2rem;
    }

    .contact-form {
        flex-direction: column;
    }

    /* Mobile Nav */
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: rgba(0, 0, 0, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 999;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}