/* =====================================================
   DINNER DECK - Main Stylesheet
   ===================================================== */

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ===================================================== 
   NAVIGATION
   ===================================================== */

nav {
    background: #FFF;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
    box-shadow: 0 10px 7px rgba(0, 0, 0, 0.2);
    border-bottom: #662e93 4px solid;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 20px;
    text-transform: uppercase;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4757;
}

/* ===================================================== 
   HERO SECTION
   ===================================================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* ===================================================== 
   PAGE HEADER
   ===================================================== */

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%),
        radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 100px 100px;
    background-position: 0 0, 50px 50px;
    opacity: 0.5;
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

/* ===================================================== 
   DEAL THE DECK WIDGET
   ===================================================== */

.deal-widget {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align:center;
}

.card-display {
    width: 300px;
    height: 420px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.card-display:hover {
    transform: scale(1.05) rotate(2deg);
}

.card-display.shuffling {
    animation: shuffle 0.5s ease-in-out;
}

@keyframes shuffle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg) translateX(-20px); }
    75% { transform: rotate(5deg) translateX(20px); }
}

.card-content {
    text-align: center;
    padding: 2rem;
    color: white;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
}

.deal-button {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255,71,87,0.4);
}

.deal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,71,87,0.6);
}

/* ===================================================== 
   BUTTONS & CTAs
   ===================================================== */

.cta-button, .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255,71,87,0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,71,87,0.6);
}

.learn-more-button {
    display: inline-block;
    background: #f8f9fa;
    color: #333;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255,71,87,0.4);
}

.learn-more-button:hover,
.learn-more-button.active {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    border-color: #ff4757;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,71,87,0.6);
}

.btn-stacked{
    margin-top:10px;
}

/* ===================================================== 
   SECTIONS
   ===================================================== */
.intro h2{
    text-transform: uppercase;
    margin-bottom:70px;
}
.center{
    text-align: center;
}
.deck-feature, .why-section, .blog-section {
    padding: 5rem 2rem;
    background: #fff;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #000;
}

/* Why Dinner Deck */
.why-section {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.why-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

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

.benefit {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.benefit:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.benefit p {
    font-size: 1rem;
    line-height: 1.6;
}

/* =====================================================
Single Deck
   ===================================================== */
   .product-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .product-image-main {
            width: 100%;
            height: 500px;
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #555;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .product-info h1 {
            font-size: 3.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -2px;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .product-info p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .buy-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            color: white;
            padding: 1.2rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.3rem;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255,71,87,0.4);
            border: none;
            cursor: pointer;
        }

        .buy-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,71,87,0.6);
        }

        /* Product Details Section */
        .product-details {
            padding: 5rem 2rem;
            background: #fff;
        }

        .product-details .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 3rem;
            text-align: center;
            color: #000;
            letter-spacing: -1px;
        }

        /* Video Section */
        .video-section {
            margin-bottom: 5rem;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .video-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }

        .feature-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .feature-card:nth-child(2) {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
        }

        .feature-card:nth-child(3) {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            color: #333;
        }

        .feature-card:nth-child(4) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: inherit;
        }

        .feature-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: inherit;
            opacity: 0.95;
        }

        /* What's Included */
        .whats-included {
            background: #f8f9fa;
            padding: 4rem;
            border-radius: 20px;
            margin-bottom: 5rem;
        }

        .whats-included h2 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 2rem;
            text-align: center;
            color: #000;
        }

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

        .included-item {
            text-align: center;
            padding: 1.5rem;
        }

        .included-item-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .included-item h4 {
            font-size: 1.2rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .included-item p {
            font-size: 0.95rem;
            color: #666;
        }

/* ===================================================== 
   TESTIMONIALS
   ===================================================== */

.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 900;
    text-transform: uppercase;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Reviews Section */
        .reviews-section {
            padding: 5rem 2rem;
            background: #fff;
        }

        .reviews-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .reviews-header h2 {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #000;
        }

        .rating-summary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            font-size: 1.2rem;
        }

        .stars {
            color: #ffd700;
            font-size: 1.5rem;
        }

        .review-slider-container {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .review-grid {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(255,71,87,0.4);
            z-index: 10;
        }

        .slider-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 20px rgba(255,71,87,0.6);
        }

        .slider-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .slider-button:disabled:hover {
            transform: translateY(-50%);
        }

        .slider-button.prev {
            left: 0;
        }

        .slider-button.next {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #ff4757;
            width: 30px;
            border-radius: 6px;
        }

        .review-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s;
            flex: 0 0 calc((100% - 4rem) / 3);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }


        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .reviewer-name {
            font-weight: 900;
            text-transform: uppercase;
            color: #333;
        }

        .review-stars {
            color: #ffd700;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        .review-date {
            font-size: 0.85rem;
            color: #999;
        }
/* ================
   About
========================

/* Content Sections */
        .content-section {
            margin-bottom: 4rem;
        }

        .content-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: #000;
            letter-spacing: -1px;
        }

        .content-section h3 {
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #333;
        }

        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .content-section ul {
            list-style-position: inside;
            margin-bottom: 1.5rem;
        }

        .content-section li {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 0.5rem;
        }

        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 4rem;
        }

        .column {
            background: #f8f9fa;
            padding: 3rem;
            border-radius: 15px;
        }

        /* Feature Boxes */
        .feature-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-box {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .feature-box:nth-child(2) {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
        }

        .feature-box:nth-child(3) {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            color: #333;
        }

        .feature-box:nth-child(4) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-box h3 {
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: inherit;
        }

        .feature-box p {
            font-size: 1rem;
            line-height: 1.6;
            color: inherit;
            opacity: 0.95;
        }

        /* CONTACT

         /* Contact Info Boxes */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .info-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
        }

        .info-box:hover {
            transform: translateY(-5px);
        }

        .info-box:nth-child(2) {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .info-box:nth-child(3) {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
        }

        .info-box-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .info-box h3 {
            font-size: 1.2rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: white;
        }

        .info-box p {
            font-size: 1rem;
            color: white;
            opacity: 0.95;
            margin: 0;
        }

        .info-box a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .info-box a:hover {
            text-decoration: underline;
        }

        /* Contact Form */
        .contact-form {
            background: #f8f9fa;
            padding: 3rem;
            border-radius: 15px;
            max-width: 900px;
            margin: 0 auto 4rem;
        }

        .contact-form h2 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: #000;
            text-align: center;
        }

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

        .form-group label {
            display: block;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: #333;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff4757;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .submit-button {
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 900;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255,71,87,0.4);
            width: 100%;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,71,87,0.6);
        }

        .submit-button:active {
            transform: translateY(-1px);
        }

        /* FAQ Section */
        .faq-section {
            max-width: 900px;
            margin: 4rem auto;
        }

        .faq-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: #000;
            text-align: center;
        }

        .faq-item {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .faq-item h3 {
            font-size: 1.3rem;
            font-weight: 900;
            color: #333;
            margin-bottom: 1rem;
        }

        .faq-item p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }

/* ===================================================== 
   Call to Action Banner
   ===================================================== */        
        .cta-section {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 20px;
            margin: 4rem 0;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: white;
        }

        .cta-section .cta-button {
            display: inline-block;
            background: white;
            color: #19547b;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

/* ===================================================== 
   FOOTER
   ===================================================== */

footer {
    background: #000;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff4757;
}

.charity-note {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.copyright {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    color: #999;
}

/* ===================================================== 
   FORMS
   ===================================================== */

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff4757;
}

/* ===================================================== 
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .card-display {
        width: 250px;
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    .btn-stacked {
        margin-top:0px;
    }
    .learn-more-button {
        margin-top:10px;
    }
}
