/* ===================================
   SPECIALS PAGE STYLES
   =================================== */

/* Hero Section */
.specials-hero {
    background: linear-gradient(135deg, #ff8a00 0%, #e52e71 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.specials-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

/* Happy Hour Featured Section */
.happy-hour-featured {
    padding: 80px 0;
    background: linear-gradient(to bottom, #1e3a5f 0%, #2a4d7c 100%);
    position: relative;
    overflow: hidden;
}

.beer-icon-left,
.beer-icon-right {
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.beer-icon-left {
    top: -50px;
    left: -80px;
}

.beer-icon-right {
    bottom: -50px;
    right: -80px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.happy-hour-card {
    background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 138, 0, 0.4);
    overflow: hidden;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 138, 0, 0.4);
    }
    50% {
        box-shadow: 0 25px 70px rgba(255, 138, 0, 0.6);
    }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.happy-hour-badge {
    display: inline-block;
    background: rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255,255,255,0.5);
}

.happy-hour-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.happy-hour-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.day-badge,
.time-badge {
    background: rgba(0,0,0,0.3);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.4);
}

.happy-hour-deal {
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.deal-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 4px 15px rgba(0,0,0,0.4);
    line-height: 1;
    margin-bottom: 15px;
}

.deal-items {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.happy-hour-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.btn-happy,
.btn-reserve {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid #fff;
}

.btn-happy {
    background: #fff;
    color: #ff6b00;
}

.btn-happy:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-reserve {
    background: transparent;
    color: #fff;
}

.btn-reserve:hover {
    background: #fff;
    color: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Daily Specials Section */
.daily-specials-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 2px;
}

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

.special-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #ff8a00;
}

.special-card.highlight {
    border-color: #ff8a00;
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.2);
}

.special-card.highlight:hover {
    box-shadow: 0 15px 40px rgba(255, 138, 0, 0.3);
}

.special-card.closed {
    background: #e0e0e0;
    opacity: 0.6;
}

.special-card.closed:hover {
    transform: none;
    border-color: transparent;
}

.special-day {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7c 100%);
    padding: 30px;
    text-align: center;
}

.special-card.highlight .special-day {
    background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
}

.special-card.closed .special-day {
    background: #999;
}

.day-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.special-content {
    padding: 30px;
}

.special-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.special-card.closed .special-content h3 {
    color: #999;
}

.special-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    min-height: 45px;
}

.special-offer {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ff8a00;
}

.special-card.closed .special-offer {
    border-left-color: #999;
}

.offer-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 5px;
}

.special-card.closed .offer-text {
    color: #999;
}

.offer-time {
    display: block;
    font-size: 0.9rem;
    color: #ff8a00;
    font-weight: 500;
}

/* Food Specials Showcase */
.food-specials-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a4d7c 0%, #1e3a5f 100%);
    color: #fff;
    text-align: center;
}

.food-specials-showcase h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.food-specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.food-special-item {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.food-special-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    border-color: #ff8a00;
    box-shadow: 0 15px 40px rgba(255, 138, 0, 0.3);
}

.food-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.food-special-item:nth-child(1) .food-icon { animation-delay: 0s; }
.food-special-item:nth-child(2) .food-icon { animation-delay: 0.2s; }
.food-special-item:nth-child(3) .food-icon { animation-delay: 0.4s; }
.food-special-item:nth-child(4) .food-icon { animation-delay: 0.6s; }

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

.food-special-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.food-special-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    min-height: 48px;
}

.special-price {
    display: inline-block;
    background: #ff8a00;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

/* Announcements Section */
.announcements-section {
    padding: 80px 0;
    background: #fff;
}

.announcement-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.announcement-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.announcement-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.announcement-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #ff8a00;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.announcement-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.announcement-badge {
    background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.announcement-item p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.specials-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #ff8a00 100%);
    text-align: center;
    color: #fff;
}

.specials-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}

.specials-cta p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid #fff;
}

.btn-primary {
    background: #fff;
    color: #1e3a5f;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1e3a5f;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-call {
    background: #ff8a00;
    color: #fff;
    border-color: #ff8a00;
}

.btn-call:hover {
    background: #fff;
    color: #ff8a00;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Header adjustments for mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        justify-content: flex-end;
    }

    .nav-list {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    .order-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    .header-content {
        gap: 20px;
    }

    /* Page specific styles */
    .specials-hero h1 {
        font-size: 2.5rem;
    }

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

    .happy-hour-card {
        padding: 40px 30px;
    }

    .happy-hour-title {
        font-size: 2.5rem;
    }

    .deal-amount {
        font-size: 3.5rem;
    }

    .deal-items {
        font-size: 1.2rem;
    }

    .section-header h2,
    .food-specials-showcase h2 {
        font-size: 2.2rem;
    }

    .specials-cta h2 {
        font-size: 2.5rem;
    }

    .announcement-card {
        padding: 30px;
    }

    .announcement-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .specials-hero {
        padding: 100px 0 60px;
    }

    .specials-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .happy-hour-featured {
        padding: 60px 0;
    }

    .happy-hour-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .happy-hour-title {
        font-size: 2rem;
    }

    .happy-hour-time {
        flex-direction: column;
        gap: 10px;
    }

    .day-badge,
    .time-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .deal-amount {
        font-size: 2.5rem;
    }

    .deal-items {
        font-size: 1rem;
    }

    .happy-hour-cta {
        flex-direction: column;
    }

    .btn-happy,
    .btn-reserve {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2,
    .food-specials-showcase h2 {
        font-size: 1.8rem;
    }

    .food-specials-grid {
        grid-template-columns: 1fr;
    }

    .announcement-card {
        padding: 25px 20px;
    }

    .announcement-card h3 {
        font-size: 1.8rem;
    }

    .specials-cta {
        padding: 60px 0;
    }

    .specials-cta h2 {
        font-size: 2rem;
    }

    .specials-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
    }

    .beer-icon-left,
    .beer-icon-right {
        font-size: 8rem;
    }
}
