/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0d0d0d;
    --secondary-black: #1a1a1a;
    --blood-red: #8b0000;
    --crimson: #dc143c;
    --ash-gray: #2c2c2c;
    --bone-white: #f5f5f5;
    --shadow-gray: #404040;
    --rust-red: #b22222;
    --deep-red: #4a0000;
    
    --font-main: 'JetBrains Mono', monospace;
    
    --shadow-harsh: 0 4px 20px rgba(0, 0, 0, 0.8);
    --shadow-blood: 0 0 20px rgba(139, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    background: var(--primary-black);
    color: var(--bone-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile-first base styles */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    touch-action: manipulation;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--ash-gray);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo .logo {
    height: 40px;
    filter: invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--bone-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--crimson);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blood-red);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--bone-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--deep-red) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    text-shadow: var(--shadow-harsh);
}

.blood-text {
    color: var(--crimson);
    text-shadow: 0 0 20px var(--blood-red), var(--shadow-harsh);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ash-gray);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bone-white);
    opacity: 0.9;
    max-width: 500px;
}

/* Book Showcase */
.hero-book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.book-cover {
    position: relative;
    width: 280px;
    height: 420px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.book-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-harsh);
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: scale(1.05) rotateY(-5deg);
}

.book-cover:hover .book-cover-image {
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4), var(--shadow-harsh);
}

.book-info {
    text-align: center;
}

.book-info h3 {
    font-size: 1.5rem;
    color: var(--crimson);
    margin-bottom: 15px;
}

.book-info p {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.book-synopsis {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 400px;
    font-style: normal !important;
}

.cta-button {
    background: linear-gradient(45deg, var(--blood-red), var(--crimson));
    color: var(--bone-white);
    border: none;
    padding: 15px 30px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: var(--shadow-harsh);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 0, 0, 0.4);
}

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.blood-drip {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--crimson), transparent);
    animation: drip 4s ease-in-out infinite;
}

.drip-1 {
    left: 15%;
    height: 200px;
    animation-delay: 0s;
}

.drip-2 {
    left: 60%;
    height: 150px;
    animation-delay: 1.5s;
}

.drip-3 {
    left: 85%;
    height: 180px;
    animation-delay: 3s;
}

.shadow-figure {
    position: absolute;
    right: -10%;
    bottom: 0;
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    opacity: 0.3;
}

/* Sections */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--bone-white);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--crimson);
}

/* Books Section */
.books-section {
    padding: 100px 0;
    background: var(--secondary-black);
    position: relative;
}

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

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.book-item {
    background: var(--primary-black);
    border: 1px solid var(--ash-gray);
    padding: 30px;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.book-item.featured {
    border-color: var(--crimson);
    box-shadow: var(--shadow-blood);
}

.book-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.book-item:hover::before {
    opacity: 1;
}

.book-item:hover {
    transform: translateY(-5px);
    border-color: var(--crimson);
}

.book-cover-small {
    width: 80px;
    height: 120px;
    margin-bottom: 20px;
    float: left;
    margin-right: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.book-cover-small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Coming Soon Styles */
.coming-soon-cover {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--ash-gray) 50%, var(--primary-black) 100%);
    border: 2px solid var(--shadow-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(139, 0, 0, 0.1) 10px,
        rgba(139, 0, 0, 0.1) 20px
    );
    animation: shimmer 3s ease-in-out infinite;
}

.coming-soon-text {
    font-size: 0.5rem;
    font-weight: 900;
    color: var(--crimson);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
}

.book-item.coming-soon {
    opacity: 0.8;
    border-style: dashed;
}

.book-item.coming-soon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.book-details h3 {
    font-size: 1.5rem;
    color: var(--crimson);
    margin-bottom: 15px;
}

.book-excerpt {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.book-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.7;
}

.genre {
    color: var(--crimson);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--primary-black);
}

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

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.author-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--ash-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--crimson);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--ash-gray);
    letter-spacing: 1px;
}

.author-photo-frame {
    width: 300px;
    height: 400px;
    border: 3px solid var(--ash-gray);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-harsh);
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
}

.author-photo:hover {
    filter: grayscale(80%) contrast(1.1) brightness(1);
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--secondary-black);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(139, 0, 0, 0.02) 100px,
        rgba(139, 0, 0, 0.02) 101px
    );
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.testimonial {
    background: var(--primary-black);
    padding: 40px;
    border-left: 4px solid var(--crimson);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--crimson);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 40px;
}

.testimonial-author {
    text-align: right;
    opacity: 0.8;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--primary-black);
}

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

.contact-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.method-label {
    font-size: 0.9rem;
    color: var(--ash-gray);
    font-weight: 600;
    letter-spacing: 1px;
}

.method-value {
    font-size: 1.1rem;
    color: var(--crimson);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--secondary-black);
    border: 1px solid var(--ash-gray);
    color: var(--bone-white);
    padding: 15px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--crimson);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--ash-gray);
}

.submit-button {
    background: linear-gradient(45deg, var(--blood-red), var(--crimson));
    color: var(--bone-white);
    border: none;
    padding: 15px 30px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    align-self: flex-start;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid var(--ash-gray);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 30px;
    filter: invert(1);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--ash-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--crimson);
}

.newsletter-highlight {
    background: linear-gradient(45deg, var(--blood-red), var(--crimson)) !important;
    color: var(--bone-white) !important;
    padding: 8px 15px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.newsletter-highlight:hover {
    background: linear-gradient(45deg, var(--crimson), var(--blood-red)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--ash-gray);
}

.footer-bottom p {
    color: var(--ash-gray);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Animations */
@keyframes drip {
    0% {
        height: 0;
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        height: 200px;
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-harsh);
        padding: 30px 0;
        border-top: 2px solid var(--crimson);
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid var(--ash-gray);
        margin: 0 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 85px;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .hero {
        padding: 140px 0 60px;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .book-cover {
        width: 220px;
        height: 330px;
        margin: 0 auto;
    }
    
    .book-cover-image {
        border-radius: 6px;
    }
    
    .book-title {
        font-size: 1.5rem;
    }
    
    .book-info h3 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: 40px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .author-stats {
        justify-content: space-around;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .author-photo-frame {
        width: 250px;
        height: 320px;
        margin: 0 auto;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .contact-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .contact-methods {
        text-align: center;
        gap: 25px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-left {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-logo {
        height: 25px;
    }
    
    .newsletter-highlight {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        height: 75px;
        padding: 0 10px;
    }
    
    .nav-logo .logo {
        height: 25px;
    }
    
    .nav-menu {
        top: 75px;
        padding: 25px 0;
    }
    
    .nav-menu a {
        font-size: 16px;
        margin: 0 15px;
    }
    
    .hero {
        padding: 130px 0 40px;
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 0 10px;
        gap: 35px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 15vw, 4rem);
        line-height: 0.85;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 5px;
    }
    
    .book-cover {
        width: 180px;
        height: 270px;
    }
    
    .book-cover-image {
        border-radius: 4px;
    }
    
    .book-front {
        padding: 25px 15px;
    }
    
    .book-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .book-author {
        font-size: 0.9rem;
    }
    
    .book-tagline {
        font-size: 0.8rem;
        padding-top: 10px;
    }
    
    .book-info h3 {
        font-size: 1.1rem;
    }
    
    .book-info p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
        margin-bottom: 35px;
    }
    
    .books-section,
    .about-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .book-item {
        padding: 20px 15px;
    }
    
    .book-cover-small {
        float: none;
        margin: 0 auto 15px auto;
        width: 60px;
        height: 90px;
    }
    
    .book-details h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .book-excerpt {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .book-meta {
        justify-content: center;
        font-size: 0.7rem;
        gap: 15px;
    }
    
    .about-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .author-stats {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .author-photo-frame {
        width: 200px;
        height: 250px;
    }
    
    .testimonial {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: 5px;
        left: 15px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 30px;
        margin-bottom: 15px;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .method-label {
        font-size: 0.8rem;
    }
    
    .method-value {
        font-size: 1rem;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        align-self: stretch;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-top {
        gap: 20px;
    }
    
    .footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .newsletter-highlight {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        order: -1;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-bg-effects,
    .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: white;
        color: black;
    }
}