/* Global styles */
/* Load the Wanted font provided by the user. */
@font-face {
    font-family: 'Wanted';

    /* Load the Wanted font from the assets directory. It lives at assets/wanted.ttf in the repository root. */
    src: url('assets/wanted.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    /* Use the Wanted display font across the entire site for a cohesive Western style */
    font-family: 'Wanted', sans-serif;
    line-height: 1.6;

    /* Set a dark background so no light band shows between full‑width sections. */
    background-color: #0a0a0a;

    /* Use a light text color for readability on dark backgrounds. */
    color: #f5e9dc;
    -webkit-font-smoothing: antialiased;
}

/* Headings use EB Garamond for a touch of elegance and negative letter‑spacing for tight kerning */
h1,
h2,
h3 {
    margin-bottom: 0.5rem;

    /* Use a light color for headings to stand out on dark or busy backgrounds */
    color: #f5e9dc;
    font-family: 'Wanted', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #c87f2f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero section */
/* Use one of the authentic Gunslingers NFT images as the hero background to better match the original site aesthetic. */
.hero {
    /* Use an animated Gunslingers scene as the hero background. */
    background-image: url('assets/shotgun-blast-animation.gif');
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: #fff;
    padding-left: 5%;
}

.hero-overlay {
    /* Remove semi‑opaque panels; instead rely on text shadows for contrast */
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;

    /* Use the Wanted font for the main title */
    font-family: 'Wanted', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-logo-title {
    display: block;
    margin: 0 0 1rem 0;
    filter: d;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: 600;

    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) */
    font-family: 'Wanted', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02rem;
}

/* Site navigation */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #0a0a0a;

    /* Dark header reminiscent of the original site */
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
}

/* Style for textual logo in the header */
.site-nav .logo-text {
    font-family: 'Wanted', sans-serif;
    font-size: 2.5rem;
    color: #f5e9dc;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-decoration: none;
    margin-right: auto;
}

.site-nav .logo-text:hover {
    text-decoration: none;
    color: #f5e9dc;
    text-shadow: 0 0 10px #c87f2f, 0 0 20px #c87f2f;
    transition: all 0.3s ease;
}

.site-nav .logo {
    /* Limit logo height so it doesn’t overpower the hero section */
    max-height: 70px;
    width: auto;
}

.btn {
    display: inline-block;
    background-color: #ff8f03;

    /* color: #fff */
    padding: 0.75rem 1.5rem;
    border-radius: 19.9px;
    font-weight: bold;
    transition: background-color 0.3s;
    color: #f5e8db;
    font-size: 150%;
}

.btn:hover {
    background-color: #f1f1f1;
}

.btn.secondary {
    background-color: #6c5239;
}

.btn.secondary:hover {
    background-color: #543f2c;
}

/* Sections */
/* Remove the constrained main container; sections should span full width unless explicitly constrained. */
/* Remove default margins from all sections so backgrounds butt together without dead space. */
section {
    margin: 0;
    padding: 3rem 0;
}

/* Remove spacing for SFX sections so the backgrounds butt up against each other without dead white bars */
.sfx-section {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-list li::before {
    content: '\2022';
    color: #c87f2f;
    position: absolute;
    left: 0;
    top: 0;
}

/* Characters section */
.characters {
    margin-top: 3rem;
    text-align: center;
}

.character-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    align-items: start;
}

.character img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.character h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    color: #3b1d0b;
}

.town {
    margin-top: 3rem;
    padding: 2rem 0;
    background-color: #f9efe3;
    border-top: 1px solid #e6d7c3;
    border-bottom: 1px solid #e6d7c3;
}

.town-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.town-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.town-text {
    max-width: 500px;
}

.town-text h2 {
    margin-bottom: 0.5rem;
    color: #3b1d0b;
}

.town-text p {
    color: #5a4633;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (min-width: 600px) {
    .town-grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .town-image,
    .town-text {
        flex: 1;
    }
}

.character p {
    font-size: 0.9rem;
    color: #5a4633;
}

@media (min-width: 600px) {
    .character-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Game showcase section */
.game-showcase {
    background-color: #090a0b;

    /* Dark blue to match night theme */
    padding: 3rem 0;
}

/* Blog preview */
.posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.post h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.post p {
    font-size: 0.9rem;
    color: #5a4633;
}

@media (min-width: 600px) {
    .posts {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero {
        padding-left: 8%;
    }
}

/* Footer */
.footer {
    background-color: #1a2332;

    /* Dark blue to match night theme */
    color: #f5e9dc;
    padding: 1.5rem 1rem;
    text-align: center;
}

.social {
    color: #c87f2f;
    font-weight: bold;
}

/* Constrain the blog preview section to a manageable width and center it. */
.blog-preview {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: #2d4a3d;

    /* Dark green to match hero */
}

/* SFX section used for dynamic backgrounds. Fills the width of the page and uses an animated GIF as a backdrop. */
/* Base SFX section styling: sets layout and spacing. Specific backgrounds are defined per variant class below. */
/* SFX sections fill the full viewport width and use dynamic backgrounds. */
.sfx-section {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;

    /* No margin so sections butt up seamlessly */
    margin: 0;

    /* Set a minimum height so the GIF backgrounds occupy more vertical space */
    min-height: 90vh;
}

/* Ensure consecutive SFX sections do not create a gap between them */
.sfx-section + .sfx-section {
    margin-top: 0;
}

/* Assign unique GIF backgrounds to each SFX section variant */
.sfx-section.vfx {
    background-image: url('assets/visual-effects-animation.gif');

    /* Scale the GIF to 200% width like other backgrounds and crop vertically */
    background-size: 200% 100%;
    background-repeat: no-repeat;
    min-height: 80vh;
}

.sfx-section.sfx17 {
    background-image: url('assets/special-effect-green-animation.gif');
    background-color: #366657;

    /* Scale the GIF to 200% width and crop vertically so the section height
       remains moderate. */
    background-size: 200% 100%;
    background-repeat: no-repeat;
    min-height: 80vh;
}

.sfx-section.sfx26 {
    /* Reintroduce an animated GIF for the cream‑colored middle section. Scale it to 200% width
       and crop vertically so the section height remains reasonable. */
    background-image: url('assets/special-effect-tan-animation.gif');
    background-color: #366657;
    background-size: 200% 100%;
    background-repeat: no-repeat;

    /* Reduce the minimum height for the middle section so it isn’t as tall as the others */
    min-height: 80vh;
}

/* Container for the stat sheet overlay */
/* Constrain the stat‑sheet overlay a bit wider on larger screens for better use of space */
.stat-sheet {
    position: relative;

    /* Allow the stat sheet to grow a bit wider on larger screens */
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
}

.stat-sheet-image {
    width: 100%;
    display: block;
}

.stat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Constrain the overlay to ensure paragraphs stay inside the parchment while providing more space */
    /* Make the content area narrower on desktop so there’s ample margin between the text and the parchment edges */
    width: 80%;
    text-align: center;

    /* Use a near‑black brown for the text on the parchment to improve contrast */
    color: #352315;

    /* Remove tinted backgrounds on desktop so the parchment artwork shows through */
    background-color: transparent;

    /* Apply very large padding on all sides (exactly 125px) to ensure the text sits well within the parchment */
    padding: 7.8125rem;
    border-radius: 8px;

    /* Ensure long words wrap within the card */
    word-break: break-word;
}

.stat-content h2 {
    /* Provide extra space below the heading */
    margin-bottom: 0.75rem;

    /* Increase the heading size on desktop for better hierarchy */
    font-size: 3.8rem;

    /* Use a near‑black colour for headings on the parchment for strong contrast */
    color: #111111;
}

.stat-content p {
    /* Enlarge paragraph text slightly and adjust spacing for readability */
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;

    /* Use near‑black text for high contrast on the parchment */
    color: #111111;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    /* On mobile, hide the parchment artwork and present the text on a simple panel */
    .stat-sheet {
        max-width: 100%;
        width: 100%;
    }

    .stat-sheet-image {
        display: none;
    }

    .stat-content {
        /* Reset positioning so content flows naturally when the stat sheet image is hidden */
        position: static;
        transform: none;
        left: auto;
        top: auto;
        margin: 0 auto;
        width: 95%;

        /* Provide a subtle tan background behind the text on mobile */
        background-color: #f5e9dc;
        color: #111111;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .stat-content h2 {
        /* Darken headings on mobile for better contrast against the light panel */
        color: #352315;
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .stat-content p {
        color: #352315;
        font-size: 1rem;
        line-height: 1.5;
    }

    /* On mobile, make SFX sections taller to showcase the GIF backgrounds */
    .sfx-section {
        /* On small screens, give even more vertical space to show off the animated backgrounds */
        min-height: 120vh;
        padding: 8rem 0;
    }
}

/* Style blog article paragraphs separately with a clean sans‑serif font */
article p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #352315;
}

/* Blog post styling: apply only to top‑level articles in the blog pages. 
   Give the content a white background and dark grey text for improved readability. */
main > article {
    background-color: #ffffff;
    color: #333333;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 960px;
}

main > article h1,
main > article h2,
main > article h3 {
    color: #352315;
}

main > article p {
    color: #333333;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

/* Custom overrides for stat sheet and blog cards */
/* Shift parchment image left */
.stat-sheet-image {
    margin-left: -40px;
}

/* Adjusted padding to fit text within parchment */
.stat-content {
    padding: 3rem 4rem !important;
}

/* Override to shift stat sheet image to the right by 5px and stack blog posts */
.stat-sheet-image {
    margin-left: 5px !important;
}

.posts {
    grid-template-columns: 1fr !important;
}

/* Blog preview card styling */
/* Mobile overrides: hide parchment and reduce padding to 10px */
@media (max-width: 600px) {
    .stat-sheet-image {
        display: none !important;
    }

    .stat-content {
        padding: 0.625rem !important;
    }
}

.post {
    background-color: #f9efe3;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post h3 a {
    color: #3b1d0b;
}

.post p {
    color: #5a4633;
}

/* Navigation menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    align-items: center;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #f5e9dc;
    font-family: 'Wanted', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c87f2f;
    text-decoration: none;
}

.site-nav {
    justify-content: space-between;
    padding: 1rem 2rem;
}

/* Container for centered content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Features page styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #f9efe3;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.feature-card h3 {
    color: #3b1d0b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #5a4633;
    line-height: 1.6;
}

.features-list {
    background: #f9efe3;
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.features-list h2 {
    color: #3b1d0b;
    margin-bottom: 2rem;
}

.feature-bullets {
    list-style: none;
    padding: 0;
}

.feature-bullets li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #5a4633;
    border-bottom: 1px solid #e6d7c3;
}

.feature-bullets li:last-child {
    border-bottom: none;
}

.feature-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c87f2f;
    font-size: 1.2rem;
}

/* Gallery page styles */
.gallery-section {
    margin: 3rem 0;
}

.gallery-section h2 {
    color: #f5e9dc;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

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

.gallery-item {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    color: #f5e9dc;
    text-align: center;
    font-size: 0.9rem;
}

/* Contact page styles */
.contact-section {
    margin: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background: #f9efe3;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #3b1d0b;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d4c3af;
    border-radius: 4px;
    font-family: 'Wanted', sans-serif;
    font-size: 1rem;
    background: white;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    color: #f5e9dc;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #3a3a3a;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #c87f2f;
    margin-bottom: 0.5rem;
}

.social-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.social-links li {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: #f5e9dc;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #c87f2f;
}

/* FAQ section */
.faq-section {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.faq-section h2 {
    color: #f5e9dc;
    margin-bottom: 2rem;
    text-align: center;
}

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

.faq-item {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    color: #c87f2f;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #f5e9dc;
    line-height: 1.6;
}

/* Newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: white;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-family: 'Wanted', sans-serif;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: #f9efe3;
    border-radius: 8px;
    margin: 3rem 0;
}

.cta-section h2 {
    color: #3b1d0b;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #5a4633;
    margin-bottom: 2rem;
}

/* Mobile menu toggle */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Steam Wishlist CTA Styles */
.steam-cta {
    background: linear-gradient(135deg, #171a21 0%, #2a475e 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.steam-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.steam-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.steam-cta p {
    color: #c7d5e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn-steam {
    display: inline-block;
    background: linear-gradient(135deg, #00adee 0%, #0078d7 100%);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 173, 238, 0.3);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.btn-steam:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 173, 238, 0.4);
    background: linear-gradient(135deg, #0078d7 0%, #00adee 100%);
    text-decoration: none;
}

.btn-steam-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

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

.floating-cta .btn-steam {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Newsletter Popup */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.newsletter-popup.active {
    display: flex;
}

.newsletter-content {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.newsletter-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.newsletter-close:hover {
    opacity: 1;
}

.newsletter-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.newsletter-benefits li {
    color: white;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.newsletter-benefits li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.newsletter-form-popup {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form-popup input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-form-popup input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form-popup button {
    background: white;
    color: #8B4513;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form-popup button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero CTA Section */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}
