:root {
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-lg: 16px;
    --shadow-brand-red: 0 20px 40px rgba(231, 76, 60, 0.3);
    --shadow-brand-yellow: 0 20px 40px rgba(247, 220, 111, 0.3);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fw-bold: 700;
    --fw-black: 900;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Inter', sans-serif;
}


.about-us-section {
    min-height: 60vh;
    background: var(--bg-primary);
    padding: var(--space-8) var(--space-4);
    position: relative;
    margin-top: 4%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-4);
    min-height: 60vh;
}

@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: var(--space-6);
    }

    .image-vertical {
        grid-column: 1;
        grid-row: 1;
    }

    .yellow-card {
        grid-column: 2 / 4;
        grid-row: 1;
    }

    .red-card {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .image-square {
        grid-column: 3;
        grid-row: 2;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: var(--space-5);
    }

    .image-vertical {
        grid-column: 1;
        grid-row: 1;
    }

    .yellow-card {
        grid-column: 2;
        grid-row: 1;
    }

    .red-card {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .image-square {
        grid-column: 1 / 3;
        grid-row: 3;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .about-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: var(--space-4);
    }

    .about-us-section {
        padding: var(--space-6) var(--space-4);
    }
}

.image-vertical {
    height: 450px;
    background: linear-gradient(135deg, var(--brand-red-primary), var(--brand-red-light));
    background-image: url("/wp-content/uploads/2025/06/484968492_661657323471298_7980192599215115143_n-1.jpg");
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.image-vertical:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-brand-red);
}

.yellow-card {
    height: 450px;
    background: #FFC107;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.yellow-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-brand-yellow);
}

.yellow-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.yellow-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-black);
    color: var(--bg-primary);
    margin-bottom: var(--space-3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.yellow-content .highlight {
    color: var(--brand-red-primary);
    text-shadow: 2px 2px 6px rgba(211, 47, 47, 0.3);
}

.yellow-content p {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: var(--bg-primary);
    line-height: 1.4;
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.yellow-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-size: var(--fs-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-red-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--brand-red-secondary);
    transform: translateY(-2px) scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-primary);
    border: 2px solid var(--bg-primary) !important;
}

.btn-secondary:hover {
    background: var(--bg-primary);
    color: var(--brand-yellow-primary);
    transform: translateY(-2px) scale(1.05);
}

.red-card {
    height: 350px;
    background: linear-gradient(135deg, var(--brand-red-primary) 0%, var(--brand-red-secondary) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.red-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-brand-red);
}

.red-content {
    text-align: left !important;
}

.red-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-black);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.red-content p {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--text-primary);
    font-weight: var(--fw-bold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.image-square {
    height: 350px;
    background-image: url('/wp-content/uploads/2025/06/482054808_653946947575669_5737228173173698951_n-1.jpg');
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.image-square:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-brand-red);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .yellow-card {
        height: 400px;
        padding: var(--space-6);
    }

    .yellow-content h2 {
        font-size: var(--fs-3xl);
    }

    .yellow-content p {
        font-size: var(--fs-base);
    }

    .red-card {
        height: 250px;
        padding: var(--space-6);
    }

    .red-content h2 {
        font-size: var(--fs-5xl);
    }

    .red-content p {
        font-size: var(--fs-lg);
    }

    .image-vertical {
        height: 400px;
    }
    .image-square {
        height: 550px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .yellow-card,
    .image-vertical {
        height: 450px;
    }

    .red-card,
    .image-square {
        height: 250px;
    }

    .yellow-card {
        padding: var(--space-6);
        text-align: center;
    }

    .yellow-content h2 {
        font-size: var(--fs-3xl);
    }

    .yellow-content p {
        font-size: var(--fs-base);
    }

    .yellow-buttons {
        justify-content: center;
    }

    .red-card {
        padding: var(--space-6);
        text-align: center;
    }

    .red-content {
        text-align: center !important;
    }

    .red-content h2 {
        font-size: var(--fs-2xl);
    }

    .red-content p {
        font-size: var(--fs-lg);
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: var(--space-4) var(--space-3);
    }

    .about-container {
        gap: var(--space-3);
    }

    .yellow-card,
    .image-vertical {
        height: 420px;
    }

    .red-card,
    .image-square {
        height: 320px;
    }

    .yellow-card {
        padding: var(--space-4);
        text-align: center;
    }

    .yellow-content h2 {
        font-size: var(--fs-4xl);
        line-height: 1.2;
    }

    .yellow-content p {
        font-size: 0.9rem;
        margin-bottom: var(--space-3);
    }

    .yellow-buttons {
        flex-direction: column;
        gap: var(--space-2);
    }

    .btn {
        width: 100%;
        padding: var(--space-2) var(--space-4);
        font-size: 0.85rem;
    }

    .red-card {
        padding: var(--space-4);
        text-align: center;
    }

    .red-content {
        text-align: center !important;
    }

    .red-content h2 {
        font-size: var(--fs-5xl);
        margin-bottom: var(--space-2);
    }

    .red-content p {
        font-size: var(--fs-base);
    }
}

@media (max-width: 359px) {
    .about-us-section {
        padding: var(--space-3) var(--space-2);
    }

    .yellow-card,
    .image-vertical {
        height: 280px;
    }

    .red-card,
    .image-square {
        height: 200px;
    }

    .yellow-content h2 {
        font-size: var(--fs-xl);
    }

    .yellow-content p {
        font-size: 0.8rem;
    }

    .red-content h2 {
        font-size: var(--fs-lg);
    }

    .red-content p {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: var(--space-2) var(--space-3);
    }
}

.about-container > * {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.about-container > *:nth-child(1) { animation-delay: 0.1s; }
.about-container > *:nth-child(2) { animation-delay: 0.2s; }
.about-container > *:nth-child(3) { animation-delay: 0.3s; }
.about-container > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::selection {
    background-color: var(--brand-red-primary);
    color: var(--text-primary);
}

@media (max-height: 500px) and (orientation: landscape) {
    .yellow-card,
    .red-card,
    .image-vertical,
    .image-square {
        height: auto;
        min-height: 200px;
    }

    .about-us-section {
        padding: var(--space-4);
    }
}