/* 
========================================
Mezzecik - Main Stylesheet
========================================
Contents:
1. Variables & Reset
2. Common Styles
3. Header & Navigation
4. Hero Section
5. Section Styles
6. About Section
7. Features Section
8. Promo Section
9. Gallery Section
10. Order Section
11. Testimonial Section
12. Contact Section
13. Footer
14. Utilities
15. Animations
16. Modal
17. Media Queries
========================================
*/

/* 1. Variables & Reset
---------------------------------------- */
:root {
    /* Colors */
    --color-primary: #e84118; /* Vibrant tomato red */
    --color-primary-dark: #c23616; /* Darker red for hover states */
    --color-secondary: #e1b12c; /* Golden yellow accent */
    --color-text: #2f3640; /* Dark gray for text */
    --color-text-light: #7f8fa6; /* Lighter gray for secondary text */
    --color-bg: #fff; /* White background */
    --color-bg-light: #f5f6fa; /* Light gray for alternating sections */
    --color-bg-dark: #2f3640; /* Dark background for footer */
    
    /* Typography */
    --font-heading: "Nunito", sans-serif;
    --font-body: "Roboto", sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
    
    /* Border radius */
    --rounded-sm: 5px;
    --rounded-lg: 10px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --ease-default: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--ease-default);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* 2. Common Styles
---------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section:nth-child(even) {
    background-color: var(--color-bg-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--rounded-sm);
    border: none;
    cursor: pointer;
    transition: var(--ease-default);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #c49b24; /* Darker yellow */
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* 3. Header & Navigation
---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: var(--ease-default);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    margin: 0 1rem;
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--ease-default);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    outline: none;
    position: relative;
    z-index: 1001;
}

.hamburger, 
.hamburger::before, 
.hamburger::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--ease-default);
    border-radius: 2px;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Active state */
.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu Styles */
@media (max-width: 1023px) {
    .nav-menu {
        transition: all 0.3s ease;
    }
    
    .nav-menu.flex {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 80px !important;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 10px 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 1.1rem;
        text-align: left;
        margin: 0;
    }
}

/* 4. Hero Section
---------------------------------------- */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    background-image: url('assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    width: 150px;
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-subtitle-en {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.8;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    margin: 0 0.5rem 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #fff;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* 5. Section Styles
---------------------------------------- */
/* Common section styling, already covered in Common Styles */

/* 6. About Section
---------------------------------------- */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-md);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

/* 7. Features Section
---------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--ease-default);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* 8. Promo Section
---------------------------------------- */
.promo {
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
}

.promo h2 {
    margin-bottom: 1.5rem;
}

.promo p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.promo-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.promo-feature {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.promo-feature i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.promo .btn {
    background-color: #fff;
    color: var(--color-primary);
}

.promo .btn:hover {
    background-color: var(--color-bg-light);
}

/* 9. Gallery Section
---------------------------------------- */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--rounded-sm);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--ease-default);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 10. Order Section
---------------------------------------- */
.order-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.order-info h3,
.order-form h3 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: var(--rounded-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--ease-default);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--rounded-sm);
    transition: var(--ease-default);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 65, 24, 0.1);
}

/* 11. Testimonial Section
---------------------------------------- */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #fff;
    border-radius: var(--rounded-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--color-text-light);
}

.hashtag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.hashtag {
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--ease-default);
}

.hashtag:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* 12. Contact Section
---------------------------------------- */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: var(--rounded-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--ease-default);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-map {
    border-radius: var(--rounded-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* 13. Footer
---------------------------------------- */
.footer {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--ease-default);
}

.social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 14. Utilities
---------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease-default);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--color-primary-dark);
}

/* 15. Animations
---------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

/* 16. Modal
---------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease-default);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--rounded-lg);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--ease-default);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal h3 {
    margin-bottom: 1rem;
}

.modal p {
    margin-bottom: 1.5rem;
}

/* 17. Media Queries
---------------------------------------- */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background-color: #fff;
        box-shadow: var(--shadow-lg);
        transition: 0.4s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        margin: 1.5rem 0;
    }
    
    /* Animated hamburger */
    .menu-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    /* Adjust grid layout for smaller screens */
    .features-grid,
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-social {
        margin-bottom: 2rem;
    }
}

/* Custom Color Classes */
.text-color-primary { color: var(--color-primary); }
.text-color-primary-dark { color: var(--color-primary-dark); }
.text-color-secondary { color: var(--color-secondary); }
.text-color-text { color: var(--color-text); }
.text-color-text-light { color: var(--color-text-light); }
.text-shadow { text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); }

.bg-color-primary { background-color: var(--color-primary); }
.bg-color-primary-dark { background-color: var(--color-primary-dark); }
.bg-color-secondary { background-color: var(--color-secondary); }
.bg-color-bg { background-color: var(--color-bg); }
.bg-color-bg-light { background-color: var(--color-bg-light); }
.bg-color-bg-dark { background-color: var(--color-bg-dark); }

.border-color-primary { border-color: var(--color-primary); }
.border-color-primary-dark { border-color: var(--color-primary-dark); }
.border-color-secondary { border-color: var(--color-secondary); }

/* Custom Font Classes */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* Custom Hover States */
.hover\:bg-color-primary:hover { background-color: var(--color-primary); }
.hover\:bg-color-primary-dark:hover { background-color: var(--color-primary-dark); }
.hover\:bg-\[#c49b24\]:hover { background-color: #c49b24; }
.hover\:text-white:hover { color: white; }
.hover\:text-color-primary:hover { color: var(--color-primary); }
.hover\:border-transparent:hover { border-color: transparent; }
.hover\:-translate-y-1:hover { transform: translateY(-5px); }
.hover\:-translate-y-2:hover { transform: translateY(-10px); }
.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-color-bg-light:hover { background-color: var(--color-bg-light); }

/* Custom Effects */
.transition-all { transition: var(--ease-default); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Text Opacity */
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.ring-color-primary\/10 { box-shadow: 0 0 0 3px rgba(232, 65, 24, 0.1); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }

/* Animations */
.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Custom animation classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Nav related styles */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--ease-default);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile menu */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger, 
.hamburger::before, 
.hamburger::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  transition: var(--ease-default);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Modal visibility */
.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal.active .modal-content {
  transform: translateY(0);
}

/* Media Queries */
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:hidden {
    display: none;
  }
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
} 