:root {
    --bg-black: #0E0E0E;
    --bg-dark-grey: #1C1C1C;
    --bg-paper: #F4F1EA;
    --bg-card: #141414;
    --accent-red: #D22020;
    --accent-red-hover: #b01010;
    --text-white: #EDEDED;
    --text-black: #111111;
    --text-grey: #AAAAAA;

    --font-headline: 'Special Elite', cursive;
    /* Typewriter style */
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --spacing-section: 5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
    z-index: 2;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-headline);
    /* Typewriter style */
    color: var(--text-white);
    line-height: 1.2;
    text-transform: uppercase;
}

h1.headline {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: -1px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-red);
    display: inline-block;
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    h1.headline {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

p {
    margin-bottom: 1.2rem;
    color: #ccc;
    font-size: 1.1rem;
}

/* Effects */
.highlight-text {
    background-color: var(--text-white);
    color: var(--bg-black);
    padding: 0 5px;
    font-weight: 700;
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 700;
}

/* Texture Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    /* Sharp edges */
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-red {
    background-color: var(--accent-red);
    color: var(--text-white);
    border: 1px solid var(--accent-red);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.btn-red:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7);
    color: #fff;
}

.center-btn {
    margin-top: 2rem;
    text-align: center;
}

.btn-large {
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-large {
        width: auto;
    }
}

/* Animations */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(210, 32, 32, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(210, 32, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(210, 32, 32, 0);
    }
}

.pulse {
    animation: pulse-red 2s infinite;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: grayscale(100%) contrast(1.2);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(5, 5, 5, 0.95) 90%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    background: rgba(0, 0, 0, 0.6);
    /* Text legibility */
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.subheadline-top {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--accent-red);
    background: rgba(0, 0, 0, 0.8);
    display: inline-block;
    padding: 0.2rem 0.5rem;
    margin-bottom: 1rem;
}

.subheadline-bottom {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections General */
.section {
    padding: var(--spacing-section) 0;
    position: relative;
    z-index: 2;
    background-color: var(--bg-black);
}

/* PAPER SECTION (Review: Contrast) */
.section.light-mode {
    background-color: var(--bg-paper);
    color: var(--text-black);
    /* Torn edge top effect could go here */
    border-top: 5px solid #000;
}

.section.light-mode h2 {
    color: var(--text-black);
    border-bottom: 2px solid var(--accent-red);
}

.section.light-mode p {
    color: #333;
}

/* Layout Comp */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Project Info */


.check-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-family: var(--font-headline);
}

.img-responsive {
    width: 100%;
    display: block;
    filter: sepia(0.2) contrast(1.1) grayscale(0.5);
    border: 5px solid #fff;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}



/* Deliverables Cards */
.card {
    background-color: var(--bg-paper);
    padding: 2rem;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    color: var(--text-black);
    position: relative;
    box-shadow: 5px 5px 0px #111;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px var(--accent-red);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-headline);
    color: #000;
    border-bottom: none;
}

.card p {
    color: #444;
    font-size: 0.95rem;
}

/* Difference Section */
.difference {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background: #000;
}

.diff-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px) grayscale(100%) contrast(2);
    opacity: 0.4;
    z-index: 1;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #050505, transparent, #050505);
    z-index: 2;
}

.diff-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border: 1px solid #333;
}

.big-quote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-red);
    padding-left: 2rem;
    display: block;
}

.gold-text {
    color: var(--accent-red);
    font-family: var(--font-headline);
    font-size: 1.5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    background: #000;
    display: inline-block;
    padding: 0.5rem 1rem;
    transform: rotate(1deg);
}

/* Impact */
.impact {
    background-color: var(--bg-black);
    border-top: 1px solid #333;
}

.cinematic-shadow {
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.1);
    opacity: 0.9;
}

.punchline {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    margin-top: 2rem;
    color: #fff;
    border-left: 3px solid var(--accent-red);
    padding-left: 1rem;
}

/* Social Proof */
.social-proof {
    background-color: var(--bg-paper);
    padding: 4rem 0;
    color: #000;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border: 1px solid #000;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
    font-family: var(--font-headline);
}

.testimonial p {
    font-style: normal;
    font-size: 1.1rem;
    color: #222;
}

.author {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
}

/* Offer Box */
.offer-box {
    background: var(--bg-card);
    border: 2px solid var(--accent-red);
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 100px rgba(210, 32, 32, 0.15);
    position: relative;
}

.offer-box::before {
    content: "CONFIDENTIAL";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-black);
    padding: 0 1rem;
    color: var(--accent-red);
    font-family: var(--font-headline);
    letter-spacing: 3px;
    font-weight: 700;
}

.offer-header {
    border-bottom: 1px dashed #444;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    background: var(--accent-red);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.offer-list {
    text-align: left;
    margin-bottom: 2rem;
    display: inline-block;
}

.offer-list li {
    font-family: var(--font-headline);
    color: #ddd;
    margin-bottom: 0.8rem;
}

.one-time {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

/* Guarantee */
.guarantee {
    background-color: var(--bg-black);
    padding: 3rem 0;
    border-top: 1px solid #222;
}

.shield-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

/* Footer */
.footer {
    background-color: #000;
    padding: 3rem 0;
    font-size: 0.8rem;
    color: #555;
    border-top: 5px solid var(--accent-red);
}

.legal {
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

/* Refactored Inline Styles */
.hero-bg-image {
    background-image: url('../css/images/Donald Trump 2.png');
}

.hero-subheadline {
    font-size: 1.4rem;
    color: #fff;
    max-width: 800px;
}

.hero-subheadline-secondary {
    margin-top: -1rem;
}

.hero-benefits {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.section-dashed-top {
    padding: 4rem 0;
    border-top: 1px dashed #333;
}

.hidden-files-desc {
    max-width: 700px;
    margin: 0 auto 0.5rem auto;
}

.hidden-files-subdesc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.collage-container {
    position: relative;
    display: block;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    transform: rotate(-1deg);
}

.evidence-img {
    border: 5px solid #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.tape-strip {
    position: absolute;
    top: -15px;
    left: 40%;
    width: 120px;
    height: 35px;
    background: rgba(255, 255, 255, 0.8);
    transform: rotate(-3deg);
    z-index: 10;
}

.section-title-light {
    color: #000;
    border-bottom: 2px solid var(--accent-red);
}

.deliverables-note {
    color: #000;
    margin-bottom: 1rem;
}

.diff-bg-image {
    background-image: url('https://placehold.co/1920x600/000/333?text=Blurred+Headlines');
}

.highlight-sticker {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    background: #000;
    display: inline-block;
    padding: 0.5rem 1rem;
    transform: rotate(1deg);
    color: var(--accent-red);
}

.section-title-impact {
    border-bottom: 2px solid var(--accent-red);
}

.offer-img {
    width: 100%;
    max-width: 400px;
    border: 1px solid #333;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.price-display {
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
}

.new-price {
    color: var(--accent-red);
    font-size: 2.5rem;
    font-weight: 800;
}

.security-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* Carousel Section */
.carousel-section {
    background-color: #000;
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #222;
}

.carousel-title {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 1.5rem 3rem 1.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
}

.carousel-item {
    flex: 0 0 auto;
    width: 85%;
    max-width: 400px;
    height: 300px;
    /* Fixed height for consistency */
    border: 1px solid #333;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #000;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills the box without distortion */
    display: block;
    filter: brightness(0.9);
}

.carousel-item:hover {
    transform: scale(1.02);
    z-index: 10;
    border-color: var(--accent-red);
}

.carousel-item:hover img {
    filter: brightness(1);
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(210, 32, 32, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent-red-hover);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
    left: 10px;
}

.nav-btn.next {
    right: 10px;
}

@media (min-width: 768px) {
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .nav-btn.prev {
        left: -20px;
    }

    .nav-btn.next {
        right: -20px;
    }
}


.scroll-indicator {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: fade 2s infinite;
}

.scroll-icon {
    font-size: 1.5rem;
    animation: slide-right 1.5s infinite;
}

@keyframes slide-right {
    0% {
        transform: translateX(0);
        opacity: 0.5;
    }

    100% {
        transform: translateX(10px);
        opacity: 0;
    }
}

@keyframes fade {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent-red);
    text-decoration: none;
    cursor: pointer;
}

/* Adjust carousel item cursor */
.carousel-item img {
    cursor: pointer;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    h1.headline {
        font-size: 2.5rem;
        /* Smaller headline for phones */
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .carousel-item {
        height: 250px;
        /* Slightly smaller height for better mobile view */
        width: 80%;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .offer-box {
        padding: 2rem 1rem;
    }
}