/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #1b4332;       /* Deep Forest Green */
    --color-primary-light: #2d6a4f; /* Medium Forest Green */
    --color-accent: #52b788;        /* Soft Sage Green */
    --color-accent-light: #d8f3dc;  /* Off-White Green Tint */
    --color-accent-gold: #d4a373;   /* Warm Stone / Sand Accent */
    --color-dark: #1e293b;          /* Charcoal Slate */
    --color-dark-light: #334155;    /* Lighter Slate for text */
    --color-light: #f8fafc;         /* Soft Off-White */
    --color-white: #ffffff;
    --color-error: #ef4444;
    --color-success: #10b981;
    --color-border: #e2e8f0;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Structural Defaults */
    --max-width: 1200px;
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-dark-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   UTILITY CLASSES & GRID
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--space-lg) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-md) auto;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary-light);
    margin-bottom: var(--space-xs);
    display: inline-block;
}

.section-subtitle.light {
    color: var(--color-accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.section-title.light {
    color: var(--color-white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-dark-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    transition: var(--transition-normal);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
    height: 65px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo-img {
    height: 45px;
    width: auto;
}

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

.logo-text .accent-text {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-accent-gold);
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-weight: 500;
    color: var(--color-dark-light);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

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

.btn-nav {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-sm);
}

.btn-nav:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
}

.btn-nav::after {
    display: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1b4332 0%, #122c21 50%, #1e293b 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 60px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    display: inline-block;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease forwards;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
    opacity: 0.9;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    animation: fadeInUp 1.4s ease forwards;
}

/* Showcase Image Card */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-image-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.6) 0%, rgba(27, 67, 50, 0.8) 100%);
    text-align: center;
    padding: var(--space-md);
}

.hero-image-placeholder::before {
    content: '🌱';
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    animation: pulse 3s infinite ease-in-out;
}

.placeholder-title {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.placeholder-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.hero-showcase-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.hero-image-wrapper:hover .hero-showcase-img {
    transform: scale(1.03);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.service-card {
    background-color: var(--color-light);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--color-primary-light);
    background-color: var(--color-white);
}

.service-icon-wrapper {
    background-color: var(--color-accent-light);
    color: var(--color-primary);
    padding: 0.75rem;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-dark-light);
    line-height: 1.5;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--color-light);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.9) 0%, rgba(27, 67, 50, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: var(--space-sm);
}

.gallery-info {
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.gallery-info p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
    background-color: var(--color-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 5px solid var(--color-accent);
    min-width: 140px;
}

.experience-badge .years {
    font-size: 2.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.about-text-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary-light);
}

.about-text {
    font-size: 1rem;
    color: var(--color-dark-light);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--space-xs);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    color: var(--color-dark);
}

.highlight-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

/* Diagonal Background decoration */
.contact-section::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
    background-color: var(--color-primary-light);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(150px, 150px);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
}

.contact-lead-text {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    padding: 0.85rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.contact-detail-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.contact-detail-text .value {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 2px;
    color: var(--color-white);
}

.contact-detail-text a.value:hover {
    color: var(--color-accent);
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: var(--color-white);
    padding: var(--space-md) var(--space-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.quote-form h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.form-instruction {
    font-size: 0.9rem;
    color: var(--color-dark-light);
    margin-bottom: var(--space-sm);
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-light);
    color: var(--color-dark);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary-light);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-lg) 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4, .footer-hours h4 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-links h4::after, .footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   IMAGE LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(5px);
    transition: opacity var(--transition-normal);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: var(--color-white);
    padding: 15px 0;
    font-size: 1.15rem;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: 700;
    transition: var(--transition-fast);
    cursor: pointer;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */
@media (max-width: 1024px) {
    .about-container {
        gap: var(--space-md);
    }
}

@media (max-width: 900px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .lightbox-content {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        box-shadow: var(--shadow-md);
        transition: left var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
        align-items: stretch;
    }

    .nav-menu ul li {
        text-align: center;
    }

    .nav-link {
        font-size: 1.25rem;
        display: block;
    }

    .btn-nav {
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobile header toggle open state */
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.75rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-badge {
        right: 0;
        bottom: -15px;
        padding: 1rem;
        min-width: 120px;
    }
}
