/* =========================================
   CSS Variables & Theme Setup
========================================= */
:root {
    /* Colors - Earthy, Premium Palette */
    --color-primary-dark: #1A1A1A;
    /* Anthracite */
    --color-primary: #2b2b2b;
    --color-accent: #8E5A36;
    /* Warm Dark Brown/Copper */
    --color-accent-hover: #73472a;
    --color-bg-light: #F9F6F0;
    /* Cream */
    --color-bg-white: #FFFFFF;
    --color-text-main: #333333;
    --color-text-muted: #666666;
    --color-border: #E5E0D8;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    /* Elegant serif for headings */
    --font-body: 'Outfit', sans-serif;
    /* Modern, readable sans-serif */

    /* Layout */
    --container-max-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease-in-out;
}

/* =========================================
   Resets & Base Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* Typography Utility */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 40px;
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 90, 54, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
}

/* =========================================
   Navigation
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-text-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
}

.navbar-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
    /* Since AI images might have sharp edges */
    mix-blend-mode: multiply;
    /* Helps blend pure white backgrounds into navbar */
    transition: height var(--transition-normal);
}

.navbar.scrolled .navbar-logo {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-primary);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary-dark);
}

/* Responsive Nav */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-links.show {
        max-height: 400px;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-top: 1px solid var(--color-border);
    }
}

/* =========================================
   Hero Section
========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('/images/elcamino03.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-bg-white);
    padding-top: 80px;
    /* Offset for navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    color: var(--color-bg-white);
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.hero-cta .btn-outline {
    color: var(--color-bg-white);
    border-color: var(--color-bg-white);
}

.hero-cta .btn-outline:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* Scroll-down arrow */
.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all var(--transition-normal);
    animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-down:hover {
    color: #fff;
    border-color: var(--color-accent);
    background-color: rgba(142, 90, 54, 0.3);
    animation-play-state: paused;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

/* =========================================
   Daily Menu Section
========================================= */
.daily-menu {
    background-color: var(--color-bg-white);
    position: relative;
}

.menu-card {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
}

.menu-date {
    text-align: center;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed var(--color-border);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    flex: 1;
    padding-right: 20px;
}

.menu-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-primary-dark);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.menu-item-price {
    font-weight: 600;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    white-space: nowrap;
}

.menu-download {
    text-align: center;
    margin-top: 40px;
}

.alergeny {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .menu-card {
        padding: 25px 15px;
    }

    .menu-item {
        flex-direction: column;
        gap: 10px;
    }

    .menu-item-info {
        padding-right: 0;
    }
}

/* =========================================
   Contact Section
========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--color-primary-dark);
}

.info-item p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.info-item a:hover {
    color: var(--color-accent);
}

.contact-form-container {
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-bg-light);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(142, 90, 54, 0.1);
    background-color: var(--color-bg-white);
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   Lightbox Gallery
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--color-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.45);
    opacity: 0;
    z-index: 1;
    transition: opacity var(--transition-normal);
}

.gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: var(--color-bg-white);
    z-index: 2;
    opacity: 0;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(142, 90, 54, 0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Modal styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: zoom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--color-bg-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
    z-index: 10001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(142, 90, 54, 0.4);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================================
   Events & Actions Section (Akcie)
========================================= */
.events-section {
    background-color: var(--color-bg-light);
    padding: var(--section-padding);
}

.events-group {
    margin-bottom: 40px;
}

.events-group-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.events-group--past .events-group-title {
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.event-card {
    display: flex;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.event-date-block {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-light);
    width: 100px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    border-right: 4px solid var(--color-accent);
}

.event-day {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--color-accent);
}

.event-month {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-body {
    flex-grow: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-meta-top {
    margin-bottom: 8px;
}

.event-time {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 500;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.event-desc {
    color: var(--color-text-main);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.event-gallery-item {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.event-gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
}

.event-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-rental-box {
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    color: var(--color-bg-light);
    border-radius: 8px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    border-bottom: 4px solid var(--color-accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.event-rental-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-bg-white);
    margin-bottom: 10px;
}

.event-rental-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for Event Cards */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-date-block {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 15px;
        justify-content: center;
        border-right: none;
        border-bottom: 4px solid var(--color-accent);
    }
    
    .event-day {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .event-month {
        font-size: 1rem;
    }
    
    .event-body {
        padding: 20px;
    }
}

/* =========================================
   Footer Newsletter Subscription
========================================= */
.site-footer {
    background-color: var(--color-primary-dark);
    color: #999;
    padding: 60px 0 30px 0;
    margin-top: 60px;
}

.site-footer p {
    color: #999;
}

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-text {
    flex: 1;
    min-width: 280px;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-bg-white);
    margin-bottom: 8px;
}

.newsletter-text p {
    color: #999;
    font-size: 0.95rem;
    max-width: 500px;
}

.newsletter-form {
    flex: 1;
    min-width: 320px;
    max-width: 550px;
}

.newsletter-input-wrap {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: background var(--transition-fast);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    padding: 0 25px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--color-accent-hover);
}

.newsletter-checkboxes {
    display: flex;
    gap: 20px;
}

.newsletter-checkbox-label {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.newsletter-checkbox-label input[type="checkbox"] {
    accent-color: var(--color-accent);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Response Section Styling (verification, success, error pages) */
.subscribe-response-section {
    background-color: var(--color-bg-light);
}

/* Responsive Newsletter Styles */
@media (max-width: 992px) {
    .footer-newsletter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-text {
        text-align: center;
    }
    
    .newsletter-text p {
        margin: 0 auto;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}