/* Basic CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    background: #000;
    margin: 0;
    padding: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: #000;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -18;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 2;
}

.logo-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.logo {
    max-width: 700px;
    max-height: 700px;
    width: auto;
    height: auto;
    display: block;
}

.address-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.address-box {
    background-color: #d32f2f;
    color: #fff;
    border: 6px solid #fff;
    padding: 20px 30px;
    text-align: center;
    transform: rotate(1deg);
    box-shadow: 8px 8px 0 #000;
    margin-bottom: 20px;
}

.address-title, .phone-title {
    font-size: 1rem;
    font-weight: 900;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    border-bottom: 3px solid #fff;
    padding-bottom: 5px;
}

.address-text, .phone-text {
    font-size: 1.1rem;
    font-weight: 900;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.phone-text {
    margin-bottom: 0;
}

.arrow-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    background: rgba(255, 255, 255, 0.0);
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.0);
}

.scroll-arrow:hover {
    background: none;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.0);
}

.arrow-down {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(79%) saturate(2476%) hue-rotate(347deg) brightness(95%) contrast(93%);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.arrow-down:hover {
    width: 56px;
    height: 56px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(79%) saturate(1476%) hue-rotate(347deg) brightness(115%) contrast(93%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.menu-section {
    min-height: 100vh;
    background: transparent;
    padding: 0;
    color: #fff;
    position: relative;
    z-index: 2;
}

.menu-section::before {
    display: none;
}

.menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.brutalist-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 4px 4px 0px #d32f2f;
    border: 8px solid #fff;
    padding: 20px;
    background-color: #d32f2f;
    transform: rotate(-1deg);
    margin: 2rem auto 4rem auto;
    width: fit-content;
}

.menu-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.nav-btn {
    background-color: #fff;
    color: #000;
    border: 4px solid #000;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 2px;
    margin: 5px;
}

.nav-btn:hover {
    background-color: #d32f2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #000;
}

.nav-btn.active {
    background-color: #d32f2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #000;
}

.download-btn {
    background-color: #000;
    color: #d32f2f;
    border: 4px solid #d32f2f;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 2px;
    margin: 5px;
    transform: rotate(-1deg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    background-color: #d32f2f;
    color: #000;
    transform: rotate(-1deg) translateY(-3px);
    box-shadow: 0 6px 0 #fff;
    border-color: #fff;
}

.download-icon {
    font-size: 1.3rem;
    font-weight: 900;
    animation: bounce-download 2s infinite;
}

@keyframes bounce-download {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Menu Info Header Styles */
.menu-info-header {
    margin-bottom: 2rem;
}

.menu-info-card {
    background: rgba(211, 47, 47, 0.1);
    border: 3px solid #d32f2f;
    padding: 20px;
    margin-bottom: 2rem;
    border-radius: 0;
    backdrop-filter: blur(5px);
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.quick-link {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    border: 2px solid #000;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    font-family: 'Arial Black', Arial, sans-serif;
    cursor: pointer;
}

.quick-link:hover {
    background: #000;
    color: #d32f2f;
    border-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 #d32f2f;
}

.delivery-order-link {
    background: #4caf50;
    border-color: #000;
}

.delivery-order-link:hover {
    background: #000;
    color: #4caf50;
    border-color: #4caf50;
    box-shadow: 0 4px 0 #4caf50;
}

.pickup-link {
    background: #ff9800;
    border-color: #000;
}

.pickup-link:hover {
    background: #000;
    color: #ff9800;
    border-color: #ff9800;
    box-shadow: 0 4px 0 #ff9800;
}

.download-delivery-btn {
    background: #9c27b0;
    border-color: #000;
}

.download-delivery-btn:hover {
    background: #000;
    color: #9c27b0;
    border-color: #9c27b0;
    box-shadow: 0 4px 0 #9c27b0;
}

.pizza-size-info {
    text-align: center;
    color: #fff;
}

.size-note {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.delivery-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d32f2f;
    text-shadow: 1px 1px 0 #000;
    font-style: italic;
}

/* Create Your Own Pizza Styles */
.create-your-own-section {
    background: rgba(76, 175, 80, 0.05);
    border: 2px solid #4caf50;
    padding: 20px;
    margin-top: 20px;
}

.pizza-base {
    margin-bottom: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4caf50;
}

.toppings-grid {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.topping-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
}

.topping-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #4caf50;
    text-shadow: 1px 1px 0 #000;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
}

.topping-pricing {
    margin-bottom: 8px;
}

.pricing-line {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ff9800;
    text-shadow: 1px 1px 0 #000;
    letter-spacing: 1px;
    background: rgba(255, 152, 0, 0.1);
    padding: 4px 8px;
    border: 1px solid rgba(255, 152, 0, 0.3);
    display: inline-block;
    margin-bottom: 5px;
}

.meat-toppings .pricing-line {
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.1);
    border-color: rgba(211, 47, 47, 0.3);
}

.veggie-toppings .pricing-line {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.sauce-toppings .pricing-line {
    color: #9c27b0;
    background: rgba(156, 39, 176, 0.1);
    border-color: rgba(156, 39, 176, 0.3);
}

.topping-list {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.topping-item {
    display: block;
}

/* Beer & Wine Note Styles */
.beer-wine-note {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.beer-wine-item h4 {
    color: #ffc107;
    text-shadow: 2px 2px 0 #000;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.beer-wine-item .recipe-description {
    color: #fff;
    font-style: italic;
    font-weight: 600;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.category-title {
    font-size: 3rem;
    font-weight: 900;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 6px solid #d32f2f;
    padding: 15px;
    background-color: #fff;
    color: #000;
    transform: rotate(1deg);
    width: fit-content;
    margin: 0 auto 3rem auto;
}

.subcategory {
    margin-bottom: 3rem;
}

.subcategory-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    background-color: #d32f2f;
    padding: 10px 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 4px solid #fff;
    width: fit-content;
    font-family: 'Arial Black', Arial, sans-serif;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.menu-item {
    background-color: #fff;
    color: #000;
    border: 4px solid #000;
    padding: 20px;
    position: relative;
    transition: all 0.2s ease;
}

.menu-item:hover {
    transform: translateX(5px) translateY(-5px);
    box-shadow: -8px 8px 0 #d32f2f;
}

.menu-item:nth-child(odd) {
    transform: rotate(0.5deg);
}

.menu-item:nth-child(even) {
    transform: rotate(-0.5deg);
}

.menu-item:hover:nth-child(odd) {
    transform: rotate(0.5deg) translateX(5px) translateY(-5px);
}

.menu-item:hover:nth-child(even) {
    transform: rotate(-0.5deg) translateX(5px) translateY(-5px);
}

.menu-item h4 {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 1px;
    color: #000;
}

.price-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size {
    background-color: #d32f2f;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: 900;
    border: 2px solid #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial Black', Arial, sans-serif;
}

.recipe-section {
    margin-top: 15px;
    padding: 10px;
    background-color: #000;
    border: 3px solid #d32f2f;
    transform: rotate(-0.5deg);
    transition: all 0.2s ease;
}

.recipe-title {
    font-size: 0.8rem;
    font-weight: 900;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: 'Arial Black', Arial, sans-serif;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 5px;
}

.recipe-description {
    font-size: 0.75rem;
    color: #fff;
    line-height: 1.3;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.menu-item:hover .recipe-section {
    transform: rotate(0deg);
    background-color: #d32f2f;
}

.menu-item:hover .recipe-title {
    color: #000;
    border-bottom-color: #000;
}

.menu-item:hover .recipe-description {
    color: #000;
}

/* Navigation Component Styles */
.main-nav-container {
    background: #d32f2f;
    border-bottom: 8px solid #000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand .brand-link {
    display: block;
}

.nav-logo {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-link {
    background-color: #fff;
    color: #000;
    border: 4px solid #000;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 0.5px;
    margin: 0 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    background-color: #000;
    color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 #fff;
}

.download-link {
    background-color: #000;
    color: #d32f2f;
    border-color: #d32f2f;
    transform: rotate(-1deg);
}

.download-link:hover {
    background-color: #d32f2f;
    color: #fff;
    border-color: #fff;
    transform: rotate(-1deg) translateY(-2px);
}

.download-icon {
    font-size: 1.2rem;
    font-weight: 900;
}

/* Hamburger Menu Button - Hidden on Desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #000;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 20px;
    height: 3px;
    background: #000;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Specific Styles */
@media (min-width: 769px) {
    .hero-section {
        height: 100vh;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-background {
        display: none;
    }
    
    body, html {
        background: #000;
    }
    
    .hero-section {
        background: #000;
    }
    
    .logo {
        max-width: 300px;
        max-height: 300px;
    }
    
    .logo-container {
        top: 35%;
    }
    
    .address-container {
        top: 60%;
    }
    
    .address-box {
        padding: 12px 16px;
        margin: 0 20px;
        transform: rotate(0deg);
    }
    
    .arrow-container {
        bottom: 10px;
    }
    
    .scroll-arrow {
        width: 60px;
        height: 60px;
    }
    
    .arrow-down {
        width: 32px;
        height: 32px;
    }
    
    .arrow-down:hover {
        width: 36px;
        height: 36px;
    }
    
    .address-title, .phone-title {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }
    
    .address-text, .phone-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }
    
    .phone-text {
        margin-bottom: 0;
    }
    
    .brutalist-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        padding: 15px;
    }
    
    .category-title {
        font-size: 2rem;
        letter-spacing: 2px;
        padding: 10px;
    }
    
    .menu-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        width: 200px;
        margin: 2px;
    }
    
    .download-btn {
        width: 200px;
        margin: 5px;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    /* Mobile Menu Info Header */
    .menu-info-card {
        padding: 15px;
        margin-bottom: 1.5rem;
    }
    
    .quick-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .quick-link {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 0.8rem;
        padding: 12px 15px;
        letter-spacing: 0.5px;
    }
    
    .pizza-size-info {
        margin-top: 15px;
    }
    
    .size-note {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .delivery-note {
        font-size: 0.8rem;
    }
    
    /* Mobile Create Your Own */
    .create-your-own-section {
        padding: 15px;
    }
    
    .toppings-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .topping-category {
        padding: 12px;
    }
    
    .topping-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .topping-pricing {
        margin-bottom: 6px;
    }
    
    .pricing-line {
        font-size: 0.8rem;
        padding: 3px 6px;
        letter-spacing: 0.5px;
        display: block;
        text-align: center;
        margin-bottom: 4px;
    }

    .topping-list {
        font-size: 0.9rem;
    }    /* Mobile Beer & Wine */
    .beer-wine-note {
        padding: 15px;
    }
    
    .beer-wine-item h4 {
        font-size: 1.1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }    .main-nav-container {
        padding: 15px 20px;
        position: relative;
        overflow: visible;
    }
    
    /* Show hamburger button on mobile */
    .hamburger-btn {
        display: flex;
    }
    
    /* Hide nav links by default on mobile */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    /* Show nav links when active */
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .nav-link {
        width: 80%;
        max-width: 300px;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.2rem;
        margin: 0;
        border-width: 3px;
        letter-spacing: 1px;
        background: #fff;
        color: #000;
        transform: rotate(0deg);
        box-shadow: 4px 4px 0 #d32f2f;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #d32f2f;
        color: #fff;
        transform: scale(1.05);
        box-shadow: 6px 6px 0 #fff;
    }
    
    /* Prevent body scroll when nav is open */
    body.nav-open {
        overflow: hidden;
    }
}

/* Extra small mobile navigation adjustments */
@media (max-width: 480px) {
    .main-nav-container {
        padding: 12px 15px;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    .hamburger-btn {
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    .nav-link {
        padding: 12px 18px;
        font-size: 1.1rem;
    }
}

/* Story Section Styles */
.story-section {
    background: #000;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
    border-top: 6px solid #d32f2f;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 4px 4px 0 #d32f2f;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    border: 4px solid #fff;
    padding: 20px 40px;
    background: #000;
    display: inline-block;
    transform: rotate(-1deg);
}

.story-card {
    background: #fff;
    border: 6px solid #d32f2f;
    padding: 40px;
    transform: rotate(0.5deg);
    box-shadow: 12px 12px 0 #d32f2f;
    margin: 0 auto;
    max-width: 800px;
}

.story-header {
    margin-bottom: 30px;
}

.book-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #d32f2f;
    text-shadow: 2px 2px 0 #000;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

.book-subtitle {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    font-size: 2rem;
    color: #d32f2f;
    text-shadow: 1px 1px 0 #000;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    border: 2px solid #000;
    padding: 5px 15px;
    background: #f8f8f8;
}

.story-description {
    margin-bottom: 30px;
}

.story-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000;
    font-weight: 600;
    text-align: left;
    margin: 0;
    padding: 20px;
    background: #f8f8f8;
    border: 3px solid #000;
    border-left: 6px solid #d32f2f;
}

.book-link-container {
    text-align: center;
}

.book-link {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    background: #d32f2f;
    border: 4px solid #000;
    padding: 20px 40px;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #000;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0 #000;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
}

.book-link:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 0 #000;
    background: #fff;
    color: #d32f2f;
    text-shadow: 2px 2px 0 #d32f2f;
}

/* Mobile Responsive for Story Section */
@media (max-width: 768px) {
    .story-section {
        padding: 40px 15px;
    }
    
    .story-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        padding: 15px 25px;
        transform: rotate(0deg);
        line-height: 1.2;
    }
    
    .story-card {
        padding: 25px 20px;
        transform: rotate(0deg);
        box-shadow: 6px 6px 0 #d32f2f;
    }
    
    .book-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .book-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    .stars {
        font-size: 1.5rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
        padding: 4px 12px;
    }
    
    .story-description p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 15px;
        text-align: left;
    }
    
    .book-link {
        font-size: 1.3rem;
        letter-spacing: 1px;
        padding: 15px 30px;
        transform: rotate(0deg);
        box-shadow: 4px 4px 0 #000;
    }
    
    .book-link:hover {
        transform: scale(1.02);
        box-shadow: 5px 5px 0 #000;
    }
}

@media (max-width: 480px) {
    .story-title {
        font-size: 2rem;
        padding: 12px 20px;
    }
    
    .story-card {
        padding: 20px 15px;
    }
    
    .book-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .book-subtitle {
        font-size: 1rem;
    }
    
    .story-description p {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .book-link {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}

/* Footer Component Styles */
#main-footer {
    background: #000;
    border-top: 6px solid #d32f2f;
    color: #fff;
    position: relative;
    z-index: 1000;
    margin-top: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    padding: 20px;
}

.hours-section {
    background: rgba(211, 47, 47, 0.1);
    border: 3px solid #d32f2f;
    transform: rotate(-0.5deg);
    box-shadow: 4px 4px 0 #d32f2f;
}

.contact-section {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #fff;
    transform: rotate(0.5deg);
    box-shadow: -4px 4px 0 #fff;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #d32f2f;
    text-shadow: 2px 2px 0 #000;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 3px solid #d32f2f;
    padding-bottom: 10px;
}

.hours-info {
    text-align: center;
}

.hours-line {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hours-schedule {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
}

.day-hours {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: rgba(211, 47, 47, 0.8);
    border: 2px solid #d32f2f;
    padding: 5px 10px;
    white-space: nowrap;
}

.separator {
    font-size: 1.2rem;
    font-weight: 900;
    color: #d32f2f;
    margin: 0 5px;
}

.contact-info {
    text-align: center;
}

.address-line,
.phone-line,
.brand-line,
.email-line {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.brand-line {
    font-size: 2rem;
    font-weight: 900;
    color: #d32f2f;
    text-shadow: 2px 2px 0 #000;
    letter-spacing: 2px;
    margin: 20px 0;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    border: 3px solid #d32f2f;
    padding: 10px 20px;
    background: rgba(211, 47, 47, 0.1);
}

.phone-line {
    font-size: 1.4rem;
    font-weight: 900;
    color: #d32f2f;
    text-shadow: 1px 1px 0 #000;
}

.email-line {
    font-size: 1.1rem;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    border-top: 3px solid #d32f2f;
    padding-top: 20px;
}

.copyright {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    background: rgba(211, 47, 47, 0.8);
    border: 2px solid #d32f2f;
    padding: 10px 20px;
    display: inline-block;
    transform: rotate(-0.5deg);
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 30px 15px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }
    
    .footer-section {
        padding: 15px;
        transform: rotate(0deg);
        box-shadow: 3px 3px 0 #d32f2f;
    }
    
    .contact-section {
        box-shadow: 3px 3px 0 #fff;
    }
    
    .footer-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .hours-line {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hours-schedule {
        flex-direction: column;
        gap: 8px;
    }
    
    .day-hours {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
    
    .separator {
        display: none;
    }
    
    .address-line,
    .phone-line,
    .email-line {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .brand-line {
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin: 15px 0;
        padding: 8px 15px;
    }
    
    .phone-line {
        font-size: 1.2rem;
    }
    
    .email-line {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .copyright {
        font-size: 0.9rem;
        padding: 8px 15px;
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 25px 10px 12px;
    }
    
    .footer-section {
        padding: 12px;
    }
    
    .footer-title {
        font-size: 1.3rem;
        padding-bottom: 8px;
    }
    
    .hours-line {
        font-size: 0.9rem;
    }
    
    .day-hours {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .address-line,
    .phone-line,
    .email-line {
        font-size: 0.9rem;
    }
    
    .brand-line {
        font-size: 1.4rem;
        padding: 6px 12px;
    }
    
    .phone-line {
        font-size: 1.1rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
