/* ===========================
   Route 66 Desert Americana + Emo Dark
   CSS Variables & Reset
   =========================== */
:root {
    /* Desert Americana Color Palette */
    --rust-red: #C1440E;
    --desert-orange: #E87722;
    --sunset-yellow: #F4C430;
    --turquoise: #30D5C8;
    --vintage-teal: #4FA9A4;
    --sand-beige: #E8DCC4;
    --warm-cream: #F5EFE7;
    --dusty-brown: #8B6F47;
    --deep-brown: #4A3728;
    --desert-sky: #5DADE2;
    --vintage-blue: #2C5F7F;
    
    /* Emo-Dark Palette */
    --deep-black: #0A0A0A;
    --charcoal: #1A1A1A;
    --midnight: #151515;
    --dark-purple: #2D1B3D;
    --blood-red: #8B0000;
    --crimson: #DC143C;
    --dark-teal: #1A4D4D;
    --neon-pink: #FF10F0;
    --electric-cyan: #00FFFF;
    --shadow-gray: #2A2A2A;
    
    /* Updated color assignments - Hybrid Aesthetic */
    --primary-color: var(--blood-red);
    --secondary-color: var(--turquoise);
    --accent-color: var(--neon-pink);
    --text-dark: var(--charcoal);
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: var(--midnight);
    --bg-cream: var(--charcoal);
    --bg-white: var(--deep-black);
    --bg-dark: #0D0D0D;
    --border-color: var(--shadow-gray);
    --transition: all 0.4s ease;
    
    /* Refined Americana Fonts */
    --font-display: 'Oswald', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Lora', serif;
    --font-vintage: 'IBM Plex Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #E0E0E0;
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--deep-black);
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--crimson);
    text-shadow: 
        2px 2px 0px rgba(139, 0, 0, 0.3),
        0 0 15px rgba(220, 20, 60, 0.4);
    position: relative;
    font-weight: 500;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--blood-red) 0px,
        var(--blood-red) 10px,
        var(--turquoise) 10px,
        var(--turquoise) 20px,
        var(--neon-pink) 20px,
        var(--neon-pink) 30px
    );
    margin: 0 auto 2rem;
    box-shadow: 
        0 0 10px var(--blood-red),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-description {
    text-align: center;
    color: #AAA;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-family: var(--font-vintage);
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   Navigation - Roadside Sign Style
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--charcoal) 100%);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(220, 20, 60, 0.3);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 4px solid var(--crimson);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--turquoise);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 
        2px 2px 0px rgba(139, 0, 0, 0.4),
        0 0 10px rgba(48, 213, 200, 0.3);
    letter-spacing: 4px;
}

.nav-brand a:hover {
    color: #FFF;
    text-shadow: 
        2px 2px 0px rgba(139, 0, 0, 0.5),
        0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #CCC;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.nav-link:hover {
    color: var(--turquoise);
    border-bottom-color: var(--crimson);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 30px;
    height: 4px;
    background: var(--crimson);
    transition: var(--transition);
    box-shadow: 
        0 0 5px var(--blood-red),
        1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ===========================
   Hero Section - Desert Highway
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, 
        #2D1B3D 0%,
        #1A1A1A 30%,
        #8B0000 60%,
        #0A0A0A 100%
    );
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.95));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 6px;
    text-shadow: 
        3px 3px 0px rgba(139, 0, 0, 0.5),
        0 0 20px rgba(48, 213, 200, 0.4),
        2px 2px 15px rgba(0, 0, 0, 0.9);
    color: var(--turquoise);
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #DDD;
    font-family: var(--font-body);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--neon-pink);
    font-size: 2.5rem;
    text-decoration: none;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px var(--neon-pink);
}

/* ===========================
   Buttons - Vintage Sign Style
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 4px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--blood-red);
    color: white;
    border-color: var(--crimson);
    box-shadow: 
        4px 4px 0px rgba(0, 0, 0, 0.5),
        0 0 15px var(--blood-red);
}

.btn-primary:hover {
    background: var(--neon-pink);
    color: white;
    box-shadow: 
        6px 6px 0px rgba(0, 0, 0, 0.5),
        0 0 25px var(--neon-pink),
        0 0 40px var(--neon-pink);
}

.btn-secondary {
    background: transparent;
    color: var(--turquoise);
    border-color: var(--turquoise);
    box-shadow: 
        4px 4px 0px rgba(0, 0, 0, 0.5),
        0 0 10px var(--turquoise);
}

.btn-secondary:hover {
    background: var(--turquoise);
    color: var(--deep-black);
    box-shadow: 
        6px 6px 0px rgba(0, 0, 0, 0.5),
        0 0 20px var(--turquoise),
        0 0 35px var(--turquoise);
}

/* ===========================
   About Section - Vintage Postcard
   =========================== */
.about {
    padding: 6rem 0;
    background: var(--charcoal);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(139, 0, 0, 0.05) 50px,
            rgba(139, 0, 0, 0.05) 100px
        );
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 320px;
    height: 320px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--blood-red), var(--dark-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 
        8px 8px 0px var(--turquoise),
        12px 12px 0px var(--neon-pink),
        0 0 30px var(--blood-red),
        16px 16px 20px rgba(0, 0, 0, 0.8);
    border: 6px solid var(--deep-black);
    position: relative;
}

.author-photo {
    width: 320px;
    height: 320px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        6px 6px 0px rgba(48, 213, 200, 0.4),
        10px 10px 0px rgba(139, 0, 0, 0.3),
        10px 10px 30px rgba(0, 0, 0, 0.7);
    border: 4px solid var(--deep-black);
    position: relative;
}

.author-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.12) 0%,
        rgba(45, 27, 61, 0.08) 50%,
        rgba(48, 213, 200, 0.08) 100%
    );
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

.author-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
    z-index: 3;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    filter: 
        contrast(1.1)
        saturate(0.8)
        brightness(0.95)
        grayscale(0.15);
    transition: var(--transition);
}

.author-photo:hover img {
    filter: 
        contrast(1.15)
        saturate(0.85)
        brightness(1)
        grayscale(0.1);
    transform: scale(1.02);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #CCC;
    font-size: 1.15rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 0;
    background: var(--deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
    border: 3px solid var(--turquoise);
    box-shadow: 
        4px 4px 0px rgba(0, 0, 0, 0.8),
        0 0 10px var(--turquoise);
}

.social-link:hover {
    background: var(--blood-red);
    color: white;
    border-color: var(--neon-pink);
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0px rgba(0, 0, 0, 0.8),
        0 0 20px var(--neon-pink),
        0 0 35px var(--neon-pink);
}

/* ===========================
   Books Section - Trading Post Style
   =========================== */
.books {
    padding: 6rem 0;
    background: var(--midnight);
    position: relative;
}

.books::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(220, 20, 60, 0.08) 40px,
            rgba(220, 20, 60, 0.08) 80px
        );
    pointer-events: none;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.book-card {
    background: var(--charcoal);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        6px 6px 0px var(--blood-red),
        10px 10px 0px var(--neon-pink),
        0 0 25px rgba(139, 0, 0, 0.4),
        10px 10px 30px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
    border: 5px solid var(--deep-black);
    position: relative;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--neon-pink);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: 2;
    box-shadow: 0 0 15px var(--neon-pink);
}

.book-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        10px 10px 0px var(--blood-red),
        14px 14px 0px var(--neon-pink),
        0 0 40px rgba(255, 16, 240, 0.6),
        14px 14px 35px rgba(0, 0, 0, 0.9);
}

.book-cover {
    height: 400px;
    background: linear-gradient(135deg, 
        var(--dark-purple) 0%,
        var(--blood-red) 50%,
        var(--crimson) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 5px solid var(--deep-black);
}

.book-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
        );
}

.book-cover-placeholder {
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.book-info {
    padding: 2rem;
    background: var(--charcoal);
    position: relative;
}

.wip-badge {
    display: inline-block;
    background: var(--blood-red);
    color: white;
    padding: 0.4rem 1rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 2px solid var(--neon-pink);
    box-shadow: 
        0 0 15px var(--neon-pink),
        0 0 25px var(--blood-red);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 15px var(--neon-pink),
            0 0 25px var(--blood-red);
    }
    50% {
        box-shadow: 
            0 0 25px var(--neon-pink),
            0 0 40px var(--blood-red),
            0 0 50px var(--neon-pink);
    }
}

.work-in-progress .book-cover {
    background: linear-gradient(135deg, 
        var(--dark-purple) 0%,
        var(--deep-black) 50%,
        var(--blood-red) 100%
    );
}

.work-in-progress .book-cover-placeholder {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.book-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--turquoise);
    font-family: var(--font-display);
    letter-spacing: 2px;
    font-weight: 500;
}

.book-genre {
    color: var(--neon-pink);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-vintage);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-description {
    color: #BBB;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.book-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.book-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border: 3px solid var(--blood-red);
    border-radius: 0;
    transition: var(--transition);
    font-family: var(--font-display);
    letter-spacing: 1px;
    background: var(--deep-black);
    box-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.8),
        0 0 10px var(--blood-red);
}

.book-link:hover {
    background: var(--blood-red);
    border-color: var(--neon-pink);
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0px rgba(0, 0, 0, 0.8),
        0 0 20px var(--neon-pink),
        0 0 35px var(--neon-pink);
}

/* ===========================
   Contact Section - Desert Motel
   =========================== */
.contact {
    padding: 6rem 0;
    background: var(--deep-black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 16, 240, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(139, 0, 0, 0.1) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--charcoal);
    border: 4px solid var(--blood-red);
    box-shadow: 
        5px 5px 0px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(139, 0, 0, 0.3);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--neon-pink);
    min-width: 50px;
    text-shadow: 0 0 15px var(--neon-pink);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--turquoise);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.contact-item p {
    color: #AAA;
    font-size: 1.05rem;
}

.contact-form {
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 0;
    border: 5px solid var(--blood-red);
    box-shadow: 
        8px 8px 0px var(--turquoise),
        12px 12px 0px var(--neon-pink),
        0 0 30px rgba(255, 16, 240, 0.3),
        12px 12px 30px rgba(0, 0, 0, 0.9);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--turquoise);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--shadow-gray);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--midnight);
    color: #DDD;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 0 3px rgba(255, 16, 240, 0.3),
        0 0 15px var(--neon-pink);
}

.form-group textarea {
    resize: vertical;
}

/* ===========================
   Footer - Vintage License Plate
   =========================== */
.footer {
    background: linear-gradient(180deg, var(--deep-black) 0%, #000000 100%);
    color: #CCC;
    padding: 2.5rem 0;
    text-align: center;
    border-top: 6px solid var(--blood-red);
    box-shadow: 
        inset 0 4px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(139, 0, 0, 0.4);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer p {
    font-family: var(--font-vintage);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-family: var(--font-display);
}

.footer-links a {
    color: var(--turquoise);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--turquoise);
}

.footer-links a:hover {
    color: var(--neon-pink);
    text-shadow: 
        0 0 15px var(--neon-pink),
        0 0 30px var(--neon-pink);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(180deg, var(--deep-black) 0%, var(--charcoal) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 
            0 10px 27px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(139, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
        border-bottom: 4px solid var(--crimson);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1.2rem;
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 6rem;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
}

/* ===========================
   Decorative Elements
   =========================== */
.section-title::before {
    content: '★';
    margin-right: 1rem;
    color: var(--crimson);
    opacity: 0.6;
}

.section-title::after {
    content: '★';
    margin-left: 1rem;
    color: var(--crimson);
    opacity: 0.6;
}
