/*
Theme Name: Kirb's Kitchenette
Theme URI: https://kirbskitchenette.com
Author: NextSiteRise
Author URI: https://nextsiterise.com
Description: Custom theme for Kirb's Kitchenette - Authentic Filipino Catering in Toronto
Version: 1.0.0
License: GPL v2 or later
Text Domain: kirbskitchenette
*/

/* ===== CSS Variables ===== */
:root {
    --color-primary: #CC0000;
    --color-primary-dark: #A30000;
    --color-primary-light: #FF1A1A;
    --color-secondary: #000000;
    --color-accent: #F7F7F7;
    --color-warm: #FFF8F6;
    --color-background: #FFFFFF;
    --color-foreground: #111111;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* ===== Container ===== */
.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Navbar ===== */
.navbar {
    background-color: var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 2px solid var(--color-primary);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1152px;
    margin: 0 auto;
}

.navbar-logo img {
    width: 70px;
    height: 70px;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

.navbar-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.navbar-menu li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.navbar-menu li a:hover {
    color: #fff;
}

.navbar-menu li a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    background: var(--color-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    padding: 0.5rem 0;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
    .navbar-toggle {
        display: none;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-navbar {
    background: var(--color-primary);
    color: #fff;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

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

/* ===== Hero Section with Image Grid ===== */
.hero-grid {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0;
}

@media (min-width: 640px) {
    .hero-grid-bg {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-grid-bg {
        grid-template-columns: repeat(8, 1fr);
    }
}

.hero-tile {
    position: relative;
    overflow: hidden;
    animation: tileFloat 8s ease-in-out infinite;
}

.hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 3s ease;
}

.hero-tile:hover img {
    transform: scale(1.1);
}

@keyframes tileFloat {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.75), rgba(0,0,0,0.6));
}

.hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-light), var(--color-primary));
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1152px;
    margin: 0 auto;
    padding: 7rem 1.5rem;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(204, 0, 0, 0.9);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-grid h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-grid p {
    font-size: 1.125rem;
    max-width: 42rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-shine:hover::after {
    left: 100%;
}

@media (min-width: 768px) {
    .hero-grid h1 {
        font-size: 3.75rem;
    }
    .hero-grid p {
        font-size: 1.25rem;
    }
    .hero-grid .hero-content {
        padding: 10rem 1.5rem;
    }
}

/* ===== Section Styles ===== */
.section {
    padding: 5rem 0;
}

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

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

.section-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-foreground);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(204, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(3deg);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    color: rgba(17, 17, 17, 0.6);
    line-height: 1.6;
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
}

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

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

/* ===== About Preview ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-preview {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
}
.about-image img {
	width: 100%;
}
.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: rgba(17, 17, 17, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.review-text {
    color: rgba(17, 17, 17, 0.7);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--color-foreground);
}

/* ===== CTA Section ===== */
.cta {
    background: var(--color-secondary);
    color: #fff;
    text-align: center;
    padding: 5rem 1.5rem;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 2.5rem;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--color-secondary);
    color: #fff;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-light), var(--color-primary));
}

.footer-inner {
    max-width: 1152px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo img {
    width: 100px;
    height: 100px;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-primary-light);
}

/* ===== Menu Grid ===== */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.menu-item-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.menu-item-content {
    padding: 1.5rem;
}

.menu-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: rgba(17, 17, 17, 0.6);
    font-size: 0.875rem;
}

/* ===== Contact Form ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-down {
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fade-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}

/* Image Zoom on Hover */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* Underline Animation */
.underline-animate {
    position: relative;
}

.underline-animate::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.underline-animate:hover::after {
    width: 100%;
}

/* Legacy class */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== Utilities ===== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    padding: 5rem 0;
    color: #fff;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

/* ===== About Page ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    font-size: 1.125rem;
    color: rgba(17, 17, 17, 0.8);
    line-height: 1.8;
}

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

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-img {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
}

.about-img.offset {
    margin-top: 2rem;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--color-accent);
    padding: 2rem;
    border-radius: 0.75rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: rgba(17, 17, 17, 0.6);
}

/* CTA Red */
.cta-red {
    background: var(--color-primary);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-red h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-red p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.btn-white {
    background: #fff;
    color: var(--color-primary);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== Menu Page ===== */
.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

.custom-menu-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.custom-menu-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.custom-menu-cta p {
    color: rgba(17, 17, 17, 0.6);
    margin-bottom: 1.5rem;
}

/* ===== Catering Page ===== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.event-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.event-card p {
    color: rgba(17, 17, 17, 0.6);
    line-height: 1.6;
}

/* Steps */
.steps-list {
    max-width: 700px;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: rgba(17, 17, 17, 0.6);
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: rgba(17, 17, 17, 0.8);
}

.info-item a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--color-primary-light);
}

.contact-map h3 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.map-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    display: block;
}

/* ===== Form Success ===== */
.form-success {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.form-success h3 {
    color: #065f46;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #047857;
}

/* ===== Contact Form Styles ===== */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

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

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    margin-top: 0.5rem;
}
