/* Font Face - GameCube */
@font-face {
    font-family: 'GameCube';
    src: url('assets/fonts/GameCube.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Font Face - Agatho */
@font-face {
    font-family: 'Agatho';
    src: url('assets/fonts/Agatho_ Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --primary-dark: #a01a2e;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Make all headings uppercase */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
        padding: 0 2rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: none;
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

@media (min-width: 1440px) {
    .nav-container {
        padding: 0 3rem;
    }
}

@media (min-width: 1920px) {
    .nav-container {
        padding: 0 4rem;
    }
}

@media (max-width: 767px) {
    .nav-container {
        height: 90px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 767px) {
    .footer .container {
        padding: 0 1.5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .logo-icon {
        height: 50px;
    }
    
    .navbar {
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 600;
    font-size: 1.375rem;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.6875rem;
    color: var(--primary-color);
    letter-spacing: 0.25em;
    font-weight: 400;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 944px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 944px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 0.1rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 943px) {
    .nav-links {
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 7px 1.5rem;
        display: block;
        min-height: auto;
        display: flex;
        align-items: center;
    }

    .nav-links a.active {
        background: linear-gradient(to right, rgba(196, 30, 58, 0.2), transparent);
        color: var(--primary-color);
    }
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 0.1rem;
    z-index: 1001;
    pointer-events: none;
    margin-top: 0.25rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: rgba(196, 30, 58, 0.2);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu a.active {
    background: linear-gradient(to right, rgba(196, 30, 58, 0.3), transparent);
    color: var(--primary-color);
}

@media (max-width: 943px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
    }
    
    .dropdown-menu a {
        padding: 0.625rem 2rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 2.25rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-top: 110px;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    display: block;
    background: var(--white);
}

@media (max-width: 2762px) {
    .hero {
        margin-top: 0;
        height: auto;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .hero {
        margin-top: 90px;
        min-height: calc(100vh - 90px);
        display: block;
    }
}

.hero-background {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    z-index: 0;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
}

@media (max-width: 2762px) {
    .hero-background {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .hero-background {
        position: relative;
        height: calc(100vh - 90px);
        min-height: calc(100vh - 90px);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.hero-video {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    height: auto;
    max-height: calc(100vh - 110px);
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

@media (max-width: 2762px) {
    .hero-video {
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 767px) {
    .hero-video {
        width: 100%;
        height: 100%;
        min-height: calc(100vh - 90px);
        max-height: none;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.hero-logo-title {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    background: var(--white);
    margin-top: 0;
}

.hero-logo-title img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}

.hero-decoration-1 {
    width: 256px;
    height: 256px;
    background: var(--primary-color);
    top: 80px;
    right: 80px;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 384px;
    height: 384px;
    background: var(--primary-color);
    bottom: 80px;
    left: 80px;
    animation: float 8s ease-in-out infinite 1s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.badge {
    font-family: 'GameCube', sans-serif;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(196, 30, 58, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 9999px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 36rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

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

.hero-image-container {
    display: none;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-image-container {
        display: flex;
    }
}

.hero-logo {
    width: 384px;
    height: 384px;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
}

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

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.1rem;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-mouse::after {
    content: '';
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    min-height: 44px;
    touch-action: manipulation;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.25);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-white:hover {
    background: var(--gray-100);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Photo Row Section */
.photo-row-section {
    padding: 0;
    background: var(--white);
}

.photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.photo-row-item {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.photo-row-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

@media (max-width: 767px) {
    .photo-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .photo-row-item {
        aspect-ratio: 16/9;
    }
}

/* Welcome Section */
.welcome-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 0;
    padding-right: 0;
    background: var(--white);
    position: relative;
}

@media (max-width: 767px) {
    .welcome-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.welcome-header {
    margin-top: 0;
    margin-bottom: 2rem;
}

.welcome-logo {
    height: 250px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

@media (min-width: 768px) {
    .welcome-logo {
        height: 350px;
    }
}

.welcome-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
}

.welcome-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #8b1538;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.welcome-tagline {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
    font-style: italic;
}

@media (min-width: 768px) {
    .welcome-tagline {
        font-size: 1.5rem;
    }
}

.welcome-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .welcome-description {
        font-size: 1.0625rem;
    }
}

.welcome-description strong {
    color: var(--black);
    font-weight: 500;
}

.welcome-message {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 1rem 0 0 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .welcome-message {
        font-size: 1.0625rem;
    }
}

.welcome-message .accent {
    color: var(--primary-color);
    font-weight: 500;
}

.about-io-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6rem 0;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-io-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.about-io-text-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-io-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.about-io-location svg {
    flex-shrink: 0;
}

.about-io-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.about-io-image-block {
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/5;
}

.about-io-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-io-image-block:hover img {
    transform: scale(1.05);
}

.about-io-journey {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 0;
    align-items: center;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 1024px) {
    .about-io-journey {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.about-io-journey-image {
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    order: 2;
}

@media (min-width: 1024px) {
    .about-io-journey-image {
        order: 1;
    }
}

.about-io-journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-io-journey-image:hover img {
    transform: scale(1.05);
}

.about-io-journey-text {
    order: 1;
}

@media (min-width: 1024px) {
    .about-io-journey-text {
        order: 2;
    }
}

.about-io-journey-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.about-io-journey-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.about-io-journey-description strong {
    color: var(--black);
    font-weight: 500;
}

.about-io-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 6rem 0;
}

@media (max-width: 767px) {
    .about-io-gallery {
        grid-template-columns: 1fr;
    }
}

.about-io-gallery-item {
    aspect-ratio: 1;
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.about-io-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(237, 28, 35, 0.3), transparent);
}

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

.section-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin: 1rem 0 1.5rem;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.accent {
    color: var(--primary-color);
}

.section-description {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.feature-card {
    background: var(--white);
    border-radius: 0.1rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237, 28, 35, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--gray-300);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-image {
    width: 100%;
    height: 240px;
    border-radius: 0.1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9375rem;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 8rem 0;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.cta-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.3), rgba(0, 0, 0, 0.6));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.cta-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

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

/* About Hero */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.about-hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 96px;
}

.about-hero-text {
    text-align: center;
    color: var(--white);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin: 1.5rem 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 4rem;
    }
}

/* About Story Section */
#our-story,
.our-story-section {
    padding: 6rem 0;
    background: var(--white);
    scroll-margin-top: 120px;
}

@media (max-width: 767px) {
    #our-story,
    .our-story-section {
        padding: 4rem 1rem;
        scroll-margin-top: 100px;
    }
}

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

.our-story-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8b1538;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
}

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

.our-story-content {
    max-width: 1100px;
    margin: 0 auto;
}

.our-story-intro-block {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.our-story-intro {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (min-width: 768px) {
    .our-story-intro {
        font-size: 1.5rem;
    }
}

.our-story-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .our-story-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.our-story-image {
    border-radius: 0.1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.our-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-story-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .our-story-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.our-story-detail {
    text-align: left;
}

.our-story-subtitle {
    font-family: 'GameCube', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .our-story-subtitle {
        font-size: 1.5rem;
    }
}

.our-story-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (min-width: 768px) {
    .our-story-text {
        font-size: 1.0625rem;
    }
}

.our-story-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-radius: 0.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.our-story-location svg {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.our-story-location strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.our-story-location p {
    font-size: 1rem;
    color: var(--gray-700);
    margin: 0;
    font-weight: 300;
}

/* About Journey Section */
.about-journey-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.about-journey-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-journey-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-journey-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 2;
}

@media (min-width: 1024px) {
    .about-journey-text {
        order: 1;
    }
}

.about-journey-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.about-journey-paragraph {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (min-width: 768px) {
    .about-journey-paragraph {
        font-size: 1.25rem;
    }
}

.about-journey-image {
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    order: 1;
}

@media (min-width: 1024px) {
    .about-journey-image {
        order: 2;
    }
}

.about-journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-journey-image:hover img {
    transform: scale(1.05);
}

/* About Philosophy Section */
.about-philosophy-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-philosophy-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-philosophy-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-philosophy-image {
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
}

.about-philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-philosophy-image:hover img {
    transform: scale(1.05);
}

.about-philosophy-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-philosophy-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.about-philosophy-paragraph {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (min-width: 768px) {
    .about-philosophy-paragraph {
        font-size: 1.25rem;
    }
}

/* About Gallery Section */
.about-gallery-section {
    padding: 0;
    background: var(--white);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

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

.about-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.about-gallery-item.about-gallery-large {
    aspect-ratio: auto;
}

@media (min-width: 768px) {
    .about-gallery-item.about-gallery-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

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

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

/* About Team Section */
.about-team-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.about-team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-team-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-team-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.about-team-description {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (min-width: 768px) {
    .about-team-description {
        font-size: 1.25rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonials-header {
        margin-bottom: 2rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #8b1538;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.testimonials-title::before,
.testimonials-title::after {
    content: '"';
    font-size: 4rem;
    color: rgba(196, 30, 58, 0.15);
    position: absolute;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonials-title::before {
    left: -2rem;
    top: -0.5rem;
}

.testimonials-title::after {
    right: -2rem;
    bottom: -0.5rem;
}

.testimonials-line {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 1023px) {
    .testimonials-carousel-wrapper {
        padding: 0 3rem;
    }
}

@media (max-width: 767px) {
    .testimonials-carousel-wrapper {
        padding: 0 1rem;
    }
}

.testimonials-carousel {
    overflow: hidden;
    margin: 0 1rem;
}

@media (max-width: 767px) {
    .testimonials-carousel {
        margin: 0;
    }
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    min-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    flex-basis: calc((100% - 4rem) / 3);
}

@media (max-width: 1023px) {
    .testimonial-card {
        min-width: calc((100% - 2rem) / 2);
        flex-basis: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        min-width: 100%;
        flex-basis: 100%;
    }
}

.testimonial-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--primary-color);
}

.testimonial-carousel-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-carousel-btn-prev {
    left: 0;
}

.testimonial-carousel-btn-next {
    right: 0;
}

@media (max-width: 767px) {
    .testimonial-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-carousel-btn-prev {
        left: -0.5rem;
    }
    
    .testimonial-carousel-btn-next {
        right: -0.5rem;
    }
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 0.1rem;
}

.testimonials-view-more {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.25);
}

.testimonials-view-more-link:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
    transform: translateY(-1px);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), rgba(196, 30, 58, 0.3));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(196, 30, 58, 0.08);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.15), 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 300;
    position: relative;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid rgba(196, 30, 58, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    border-left-color: rgba(196, 30, 58, 0.3);
    padding-left: 1.25rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-author::before {
    transform: scaleX(1);
}

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 300;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 12rem 0 6rem;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237, 28, 35, 0.2), transparent);
}

.page-hero-background::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(237, 28, 35, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-center {
    text-align: center;
}

.page-hero-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.75rem;
    font-weight: 300;
    margin: 1.5rem 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

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

.page-hero-line {
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 2rem auto;
}

.page-hero-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

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

.page-hero-image {
    display: flex;
    justify-content: center;
}

.page-hero-image img {
    width: 384px;
    height: 384px;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
}

@media (min-width: 1024px) {
    .page-hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-card {
    max-width: 56rem;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    padding: 3rem;
    border-radius: 0.1rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.story-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

.story-content {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.value-card {
    background: var(--white);
    border-radius: 0.1rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237, 28, 35, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(196, 30, 58, 0.2);
    transform: translateY(-2px);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--white);
}

.value-card:hover .value-icon {
    transform: rotate(6deg);
}

.value-icon-1 {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.value-icon-2 {
    background: linear-gradient(135deg, #f97316, #eab308);
}

.value-icon-3 {
    background: linear-gradient(135deg, #dc2626, #ec4899);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -0.01em;
}

.value-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 0.1rem;
    padding: 4rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.team-card::before,
.team-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.team-card::before {
    width: 384px;
    height: 384px;
    background: var(--white);
    top: -80px;
    right: -80px;
}

.team-card::after {
    width: 384px;
    height: 384px;
    background: var(--black);
    bottom: -80px;
    left: -80px;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

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

.team-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .team-description {
        font-size: 1.125rem;
    }
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
}

.menu-category {
    margin-bottom: 6rem;
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 6px rgba(237, 28, 35, 0.3);
}

.menu-category-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.02em;
}

.menu-category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(237, 28, 35, 0.3), transparent);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.menu-item {
    position: relative;
}

.menu-item-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-item-content {
    border-color: rgba(196, 30, 58, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.menu-item-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.01em;
}

.menu-item-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(237, 28, 35, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.menu-item-description {
    color: var(--gray-600);
    line-height: 1.6;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.menu-note {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(to right, rgba(237, 28, 35, 0.05), transparent, rgba(237, 28, 35, 0.05));
    border-radius: 0.1rem;
    text-align: center;
    border: 2px solid var(--gray-100);
}

.menu-note p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Menu Tabs */
.menu-tabs-section {
    padding: 1rem 0;
    background: linear-gradient(to right, #c41e3a, #0a0a0a);
    border-bottom: none;
    position: sticky;
    top: 110px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
    .menu-tabs-section {
        top: 90px;
        padding: 0.75rem 0;
    }
    
    .menu-tabs-section .container {
        padding: 0 1rem;
    }
}

/* New Menu Design - Based on Reference */
.menu-section-new {
    padding: 3rem 0;
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 767px) {
    .menu-section-new {
        padding: 2rem 0;
    }
}

@media (min-width: 1440px) {
    .menu-section-new {
        padding: 4rem 0;
    }
}

@media (min-width: 1920px) {
    .menu-section-new {
        padding: 5rem 0;
    }
}

.menu-container-new {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 767px) {
    .menu-container-new {
        padding: 0 1rem;
    }
}

@media (min-width: 768px) {
    .menu-container-new {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .menu-container-new {
        padding: 0 5rem;
    }
}

@media (min-width: 1440px) {
    .menu-container-new {
        max-width: 1440px;
        padding: 0 3rem;
    }
}

@media (min-width: 1920px) {
    .menu-container-new {
        max-width: 1600px;
        padding: 0 3rem;
    }
}

.menu-category-new {
    margin-bottom: 4rem;
    scroll-margin-top: 170px;
    padding-top: 5rem;
}

@media (max-width: 767px) {
    .menu-category-new {
        margin-bottom: 3rem;
        scroll-margin-top: 150px;
        padding-top: 3rem;
    }
}

@media (min-width: 1440px) {
    .menu-category-new {
        margin-bottom: 5rem;
        padding-top: 6rem;
    }
}

@media (min-width: 1920px) {
    .menu-category-new {
        margin-bottom: 6rem;
        padding-top: 7rem;
    }
}

.menu-category-new:first-of-type {
    padding-top: 5rem;
}

.menu-header-new {
    margin-bottom: 2rem;
}

.menu-category-new:first-of-type .menu-header-new {
    padding-top: 2rem;
}

.menu-title-new {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8b1538;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .menu-title-new {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .menu-title-new {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .menu-title-new {
        font-size: 5rem;
    }
}

@media (min-width: 1440px) {
    .menu-title-new {
        font-size: 5.5rem;
    }
}

@media (min-width: 1920px) {
    .menu-title-new {
        font-size: 6.5rem;
    }
}

.menu-subtitle-new {
    font-family: 'GameCube', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .menu-subtitle-new {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (min-width: 768px) {
    .menu-subtitle-new {
        font-size: 1.5rem;
    }
}

@media (min-width: 1440px) {
    .menu-subtitle-new {
        font-size: 1.75rem;
    }
}

@media (min-width: 1920px) {
    .menu-subtitle-new {
        font-size: 2rem;
    }
}

.menu-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .menu-grid-new {
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1440px) {
    .menu-grid-new {
        gap: 4rem;
    }
}

@media (min-width: 1920px) {
    .menu-grid-new {
        gap: 5rem;
    }
    
    .menu-grid-new.image-left {
        grid-template-columns: 1fr 1.3fr;
    }
    
    .menu-grid-new.image-left .menu-items-column {
        order: 2;
    }
    
    .menu-grid-new.image-left .menu-image-box {
        order: 1;
    }
}

/* Catering Menu Page - Centered Layout */
body.catering-menu-page .menu-grid-new {
    justify-items: center;
}

body.catering-menu-page .menu-grid-new {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    body.catering-menu-page .menu-grid-new {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

body.catering-menu-page .menu-items-column {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

body.catering-menu-page .menu-header-new {
    text-align: center;
}

.menu-image-box {
    display: none;
}

@media (min-width: 1024px) {
    .menu-image-box {
        display: block;
        align-self: start;
    }
}

.menu-image-box-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .menu-image-box-wrapper {
        display: block;
        align-self: start;
    }
}

.menu-section-image {
    width: 100%;
    height: auto;
    border-radius: 0.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-section-image[src] {
    opacity: 1;
}

.menu-items-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .menu-items-column {
        gap: 1.25rem;
    }
}

@media (min-width: 1440px) {
    .menu-items-column {
        gap: 2rem;
    }
}

@media (min-width: 1920px) {
    .menu-items-column {
        gap: 2.5rem;
    }
}

.menu-item-new {
    border-bottom: 1px solid var(--gray-300);
    padding-bottom: 1rem;
}

@media (max-width: 767px) {
    .menu-item-new {
        padding-bottom: 0.875rem;
    }
}

.menu-item-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .menu-item-header-new {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.menu-item-name-new {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--gray-800);
    text-transform: uppercase;
    flex: 1;
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 767px) {
    .menu-item-name-new {
        font-size: 0.9375rem;
        line-height: 1.4;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .menu-item-name-new {
        font-size: 1.125rem;
    }
}

@media (min-width: 1440px) {
    .menu-item-name-new {
        font-size: 1.25rem;
    }
}

@media (min-width: 1920px) {
    .menu-item-name-new {
        font-size: 1.375rem;
    }
}

.menu-item-price-new {
    font-size: 1rem;
    font-weight: 300;
    color: var(--primary-color);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .menu-item-price-new {
        font-size: 0.9375rem;
        white-space: normal;
        word-break: break-word;
        align-self: flex-start;
    }
}

.price-number {
    font-family: 'Agatho', sans-serif;
    font-weight: bold;
}

@media (min-width: 768px) {
    .menu-item-price-new {
        font-size: 1.125rem;
    }
}

@media (min-width: 1440px) {
    .menu-item-price-new {
        font-size: 1.25rem;
    }
}

@media (min-width: 1920px) {
    .menu-item-price-new {
        font-size: 1.375rem;
    }
}

.menu-item-description-new {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.625;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0;
}

@media (max-width: 767px) {
    .menu-item-description-new {
        font-size: 0.6875rem;
        line-height: 1.5;
    }
}

@media (min-width: 1440px) {
    .menu-item-description-new {
        font-size: 0.875rem;
    }
}

@media (min-width: 1920px) {
    .menu-item-description-new {
        font-size: 1rem;
    }
}

.menu-item-note {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

@media (min-width: 1440px) {
    .menu-item-note {
        font-size: 0.875rem;
    }
}

@media (min-width: 1920px) {
    .menu-item-note {
        font-size: 1rem;
    }
}

.menu-subsection {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-300);
}

.menu-subsection-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #8b1538;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .menu-subsection-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1440px) {
    .menu-subsection-title {
        font-size: 3rem;
    }
}

@media (min-width: 1920px) {
    .menu-subsection-title {
        font-size: 3.5rem;
    }
}

.menu-tabs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .menu-tabs {
        justify-content: center;
        padding: 0.75rem 0;
        gap: 1rem;
    }
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .menu-tab {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px;
        gap: 0.5rem;
    }
}

.menu-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-tab:hover::before {
    opacity: 1;
}

.menu-tab.active {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.menu-tab.active::before {
    opacity: 0;
}

/* Menu Category Sections */
.menu-category-section {
    padding: 4rem 0;
    scroll-margin-top: 180px;
}

.menu-category-section:first-of-type {
    padding-top: 2rem;
}

.menu-section-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    text-transform: uppercase;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--primary-color);
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.menu-item-row:last-child {
    border-bottom: none;
}

.menu-item-row:hover {
    padding-left: 0.5rem;
}

.menu-item-info {
    flex: 1;
}

.menu-item-row .menu-item-name {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.menu-item-row .menu-item-description {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.menu-item-row .menu-item-price {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
    letter-spacing: -0.02em;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .menu-tabs-section {
        top: 80px;
        padding: 0.75rem 0;
    }
    
    .menu-category-section {
        scroll-margin-top: 160px;
    }
    
    .menu-section-title {
        font-size: 1.875rem;
    }
    
    .menu-item-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .menu-item-row .menu-item-price {
        margin-top: 0;
    }
    
    .menu-category-new {
        padding: 2rem 1rem;
        scroll-margin-top: 140px;
    }
    
    .menu-section-new {
        padding: 2rem 0;
    }
    
    .menu-title-new {
        font-size: 2rem;
    }
    
    .menu-subtitle-new {
        font-size: 1rem;
    }
    
    .menu-item-name-new {
        font-size: 1rem;
    }
    
    .menu-item-price-new {
        font-size: 1rem;
    }
    
    .menu-item-description-new {
        font-size: 0.875rem;
    }
}

/* Packages Section */
.catering-title-section {
    padding: 3rem 0;
    background: linear-gradient(to right, #c41e3a, #0a0a0a);
    margin-top: 110px;
}

@media (max-width: 767px) {
    .catering-title-section {
        margin-top: 90px;
        padding: 2rem 0;
    }
}

.catering-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

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

.catering-intro-section {
    position: relative;
    padding: 12rem 0 8rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 767px) {
    .catering-intro-section {
        padding: 8rem 0 5rem;
        min-height: 500px;
    }
}

.catering-intro-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.catering-intro-bg-image {
    width: 100%;
    height: 100%;
}

.catering-intro-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catering-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.catering-intro-content-new {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.catering-intro-text-block {
    text-align: center;
}

.catering-intro-title-new {
    font-family: 'GameCube', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.catering-intro-title-line {
    font-size: 2.5rem;
    color: var(--white);
    display: block;
}

.catering-intro-title-line-accent {
    font-size: 3.5rem;
    color: var(--primary-color);
    display: block;
}

@media (min-width: 768px) {
    .catering-intro-title-line {
        font-size: 3.5rem;
    }
    
    .catering-intro-title-line-accent {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .catering-intro-title-line {
        font-size: 4rem;
    }
    
    .catering-intro-title-line-accent {
        font-size: 6rem;
    }
}

.catering-intro-philosophy {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2em;
    margin: 0 0 2.5rem 0;
    text-transform: uppercase;
    font-style: italic;
}

@media (min-width: 768px) {
    .catering-intro-philosophy {
        font-size: 1.5rem;
    }
}

.catering-intro-description {
    max-width: 700px;
    margin: 0 auto;
}

.catering-intro-text-new {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (min-width: 768px) {
    .catering-intro-text-new {
        font-size: 1.25rem;
    }
}

.catering-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .catering-story-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.catering-story-image {
    overflow: hidden;
    border-radius: 0.1rem;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    order: 2;
}

@media (min-width: 1024px) {
    .catering-story-image {
        order: 1;
    }
}

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

.catering-story-image:hover .catering-story-img {
    transform: scale(1.05);
}

.catering-story-content {
    order: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .catering-story-content {
        order: 2;
        text-align: left;
    }
}

.catering-price-note {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    letter-spacing: 0.01em;
    margin: 2rem 0 0 0;
    font-style: italic;
}

.packages-section {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .packages-section {
        padding: 3rem 1rem;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (max-width: 767px) {
    .packages-section {
        padding: 3rem 1rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
}

.package-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.package-featured {
    background: var(--white);
    border: 2px solid var(--primary-color);
}

@media (min-width: 1024px) {
    .package-featured {
        margin-top: 0;
    }
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
}

.package-name {
    font-family: 'GameCube', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
}

.package-price {
    margin-bottom: 2rem;
}

.package-price-amount {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.package-price-unit {
    font-size: 1rem;
    color: var(--gray-600);
    margin-left: 0.5rem;
    font-weight: 300;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.package-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Catering CTA Section */
.catering-cta-section {
    padding: 6rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .catering-cta-section {
        padding: 4rem 1rem;
    }
}

.catering-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.catering-cta-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8b1538;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.catering-cta-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .catering-cta-text {
        font-size: 1.25rem;
    }
}

.catering-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Event Types Section */
.event-types-section {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .event-types-section {
        padding: 3rem 1rem;
    }
}

.event-types-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    color: #8b1538;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.event-types-description {
    font-size: 1.0625rem;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.8;
}

.event-types-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .event-types-layout {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.event-types-image-large {
    overflow: hidden;
    border-radius: 0.1rem;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    order: 1;
}

@media (min-width: 1024px) {
    .event-types-image-large {
        order: 1;
    }
}

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

.event-types-image-large:hover .event-types-large-img {
    transform: scale(1.05);
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    order: 2;
}

@media (min-width: 1024px) {
    .event-types-grid {
        order: 2;
    }
}

.event-types-image-small {
    overflow: hidden;
    border-radius: 0.1rem;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    order: 3;
}

@media (min-width: 1024px) {
    .event-types-image-small {
        order: 3;
    }
}

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

.event-types-image-small:hover .event-types-small-img {
    transform: scale(1.05);
}

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

.event-type-card {
    background: var(--white);
    border-radius: 0.1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.event-type-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.event-type-name {
    font-family: 'GameCube', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .event-type-name {
        font-size: 1.5rem;
    }
}

.event-type-description {
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
}

/* Catering Description Section */
.catering-description-section {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .catering-description-section {
        padding: 3rem 1rem;
    }
}

.catering-description-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.catering-description-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (min-width: 768px) {
    .catering-description-text {
        font-size: 1.25rem;
    }
}

/* New Catering Gallery Section */
.catering-gallery-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

@media (max-width: 767px) {
    .catering-gallery-section {
        padding: 4rem 0;
    }
}

.catering-gallery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    padding: 0;
}

.catering-gallery-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--black);
    z-index: 2;
    position: absolute;
}

.catering-gallery-btn-prev {
    left: 1rem;
}

.catering-gallery-btn-next {
    right: 1rem;
}

@media (max-width: 767px) {
    .catering-gallery-btn-prev {
        left: 0.5rem;
    }
    
    .catering-gallery-btn-next {
        right: 0.5rem;
    }
}

.catering-gallery-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.catering-gallery-btn:active {
    transform: scale(0.95);
}

.catering-gallery-btn svg {
    width: 20px;
    height: 20px;
}

.catering-gallery-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0;
}

.catering-gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.catering-gallery-item {
    flex: 0 0 33.333%;
    position: relative;
    overflow: hidden;
    border-radius: 0.1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    aspect-ratio: 4/3;
    margin-right: 1.5rem;
}

.catering-gallery-item:last-child {
    margin-right: 0;
}

@media (max-width: 1023px) {
    .catering-gallery-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .catering-gallery-item {
        flex: 0 0 100%;
    }
}

.catering-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.catering-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.catering-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.catering-gallery-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 0.1rem;
}

.catering-gallery-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Event Types Creative Layout */
.event-types-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .event-types-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.event-type-card-redesigned {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1538 100%);
    border-radius: 0.1rem;
    padding: 3rem 2rem;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event-type-card-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-type-card-redesigned:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(196, 30, 58, 0.4);
}

.event-type-card-redesigned:hover::before {
    opacity: 1;
}

.event-type-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .event-type-card-title {
        font-size: 2rem;
    }
}

.event-type-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .event-type-card-text {
        font-size: 1.0625rem;
    }
}



/* Catering Services Section */
.catering-services-section {
    padding: 6rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .catering-services-section {
        padding: 4rem 1rem;
    }
}

.catering-services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .catering-services-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.catering-services-image-block {
    overflow: hidden;
    border-radius: 0.1rem;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.catering-services-image-block:hover img {
    transform: scale(1.05);
}

.catering-services-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8b1538;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

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

.catering-services-list {
    margin-bottom: 2.5rem;
}

.catering-service-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.catering-service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.catering-service-item h3 {
    font-family: 'GameCube', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.catering-service-item p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

/* Catering Showcase Section */
.catering-showcase-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

@media (max-width: 767px) {
    .catering-showcase-section {
        padding: 4rem 1rem;
    }
}

.catering-showcase-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    color: #8b1538;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.catering-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.catering-showcase-item {
    overflow: hidden;
    border-radius: 0.1rem;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.catering-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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


/* Catering Testimonial Section */
.catering-testimonial-section {
    padding: 6rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .catering-testimonial-section {
        padding: 4rem 1rem;
    }
}

.catering-testimonial-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .catering-testimonial-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.catering-testimonial-image {
    overflow: hidden;
    border-radius: 0.1rem;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    order: 2;
}

@media (min-width: 1024px) {
    .catering-testimonial-image {
        order: 1;
    }
}

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

.catering-testimonial-image:hover img {
    transform: scale(1.05);
}

.catering-testimonial-content {
    order: 1;
}

@media (min-width: 1024px) {
    .catering-testimonial-content {
        order: 2;
    }
}

.catering-testimonial-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8b1538;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

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

.catering-testimonial-quote {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.catering-testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 300;
    margin-bottom: 1rem;
    font-style: italic;
}

.catering-testimonial-author {
    font-weight: 600;
    color: var(--black);
    font-style: normal;
    margin-top: 1rem;
}

/* Updated CTA Section */
.catering-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.catering-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-secondary {
    background: var(--gray-800);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background: var(--gray-900);
    transform: translateY(-1px);
}

/* Gallery Title Section */
.gallery-title-section {
    padding: 3rem 0;
    background: linear-gradient(to right, #c41e3a, #0a0a0a);
    margin-top: 110px;
}

@media (max-width: 767px) {
    .gallery-title-section {
        margin-top: 90px;
        padding: 2rem 0;
    }
}

.gallery-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

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

/* Gallery Featured Video Section */
.gallery-featured-video-section {
    position: relative;
    padding: 0;
    margin-top: 110px;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 110px);
}

@media (max-width: 2762px) {
    .gallery-featured-video-section {
        min-height: 100vh;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .gallery-featured-video-section {
        margin-top: 90px;
        min-height: auto;
        height: auto;
    }
}

.gallery-featured-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 110px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 2762px) {
    .gallery-featured-video-wrapper {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .gallery-featured-video-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
    }
}

.gallery-featured-video {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 110px);
    object-fit: contain;
    display: block;
    z-index: 1;
}

@media (max-width: 2762px) {
    .gallery-featured-video {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 767px) {
    .gallery-featured-video {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: 60vh;
        object-fit: cover;
        position: relative;
        display: block;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 3rem 1rem;
        margin-top: 0;
    }
    
    .gallery-item {
        border-radius: 0.1rem;
        display: block;
        width: 100%;
        min-height: 200px;
    }
    
    .gallery-grid {
        gap: 0.75rem;
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* iPad/Tablet specific fixes */
@media (min-width: 768px) and (max-width: 1023px) {
    .gallery-section {
        padding: 4rem 1.5rem;
    }
    
    .gallery-item {
        display: block;
        width: 100%;
        min-height: 250px;
    }
    
    .gallery-item-large {
        min-height: 500px;
        height: auto;
        padding-bottom: 0;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 2rem 0.75rem;
    }
    
    .gallery-grid {
        gap: 0.5rem;
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        min-height: 180px;
    }
    
    .gallery-item img {
        min-height: 180px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    width: 100%;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 5rem;
        display: grid;
        width: 100%;
    }
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.1rem;
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Fallback for aspect-ratio */
}

@supports (aspect-ratio: 1) {
    .gallery-item {
        height: auto;
        padding-bottom: 0;
    }
}

/* Ensure images display on tablets/iPads */
@media (min-width: 768px) and (max-width: 1023px) {
    .gallery-item {
        display: block;
        width: 100%;
        min-height: 250px;
        height: 0;
        padding-bottom: 100%; /* Force square aspect ratio */
    }
    
    /* If aspect-ratio is supported, use it */
    @supports (aspect-ratio: 1) {
        .gallery-item {
            height: auto;
            padding-bottom: 0;
        }
    }
    
    .gallery-item img,
    .gallery-item video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

.gallery-item-large {
    aspect-ratio: auto;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
        height: auto;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .gallery-item-large {
        aspect-ratio: 1;
        display: block;
        width: 100%;
        padding-bottom: 100%; /* Fallback for aspect-ratio */
    }
    
    @supports (aspect-ratio: 1) {
        .gallery-item-large {
            padding-bottom: 0;
        }
    }
}

.gallery-item img,
.gallery-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

@media (max-width: 767px) {
    .gallery-item img,
    .gallery-item video {
        transition: none;
    }
}

@media (max-width: 767px) {
    .gallery-item img,
    .gallery-item video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 200px;
        object-fit: cover;
    }
}

/* Fix for tablets/iPads */
@media (min-width: 768px) and (max-width: 1023px) {
    .gallery-item img,
    .gallery-item video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .gallery-item-large img,
    .gallery-item-large video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

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

@media (max-width: 767px) {
    .gallery-item:hover img,
    .gallery-item:hover video {
        transform: none;
    }
}

.gallery-item-video video {
    display: block;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

@media (max-width: 767px) {
    .gallery-overlay {
        transition: none;
        display: none;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 0;
        display: none;
    }
}

.gallery-caption {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    transform: translateY(1.5rem);
    transition: transform 0.3s ease;
}

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

@media (max-width: 767px) {
    .gallery-caption {
        transition: none;
        transform: none;
    }
    
    .gallery-item:hover .gallery-caption {
        transform: none;
    }
}

/* Instagram CTA */
.instagram-cta {
    padding: 6rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .instagram-cta {
        padding: 4rem 1rem;
    }
}

.instagram-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.instagram-cta-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8b1538;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.instagram-cta-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .instagram-cta-title {
        font-size: 2rem;
    }
    
    .instagram-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .instagram-cta-title {
        font-size: 1.75rem;
    }
    
    .instagram-cta-description {
        font-size: 0.9375rem;
    }
}

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

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

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

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

@keyframes slideInRightRotate {
    from {
        opacity: 0;
        transform: translateX(100px) rotate(-30deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInRightRotateCounter {
    from {
        opacity: 0;
        transform: translateX(100px) rotate(30deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

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

/* Animation Classes */
.scroll-animate {
    opacity: 0;
}

.scroll-animate.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

@media (max-width: 767px) {
    .gallery-section.scroll-animate,
    .gallery-grid.scroll-animate-stagger {
        opacity: 1;
    }
    
    .gallery-section.scroll-animate.animated,
    .gallery-grid.scroll-animate-stagger.animated {
        animation: none;
    }
    
    .gallery-grid.scroll-animate-stagger > * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.scroll-animate-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.scroll-animate-fade.animated {
    opacity: 1;
}

.scroll-animate-left {
    opacity: 0;
}

.scroll-animate-left.animated {
    animation: slideInLeft 0.8s ease-out forwards;
}

.scroll-animate-right {
    opacity: 0;
}

.scroll-animate-right.animated {
    animation: slideInRight 0.8s ease-out forwards;
}

.scroll-animate-right-delay {
    opacity: 0;
}

.scroll-animate-right-delay.animated {
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.scroll-animate-right-rotate {
    opacity: 0;
}

.scroll-animate-right-rotate.animated {
    animation: slideInRightRotate 0.8s ease-out forwards;
}

.scroll-animate-right-rotate-counter {
    opacity: 0;
}

.scroll-animate-right-rotate-counter.animated {
    animation: slideInRightRotateCounter 0.8s ease-out forwards;
}

.scroll-animate-scale {
    opacity: 0;
}

.scroll-animate-scale.animated {
    animation: scaleIn 0.8s ease-out forwards;
}

/* Stagger animations for children */
.scroll-animate-stagger > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@media (max-width: 767px) {
    .gallery-grid.scroll-animate-stagger > * {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
}

.scroll-animate-stagger.animated > *:nth-child(1) { animation-delay: 0.1s; }
.scroll-animate-stagger.animated > *:nth-child(2) { animation-delay: 0.2s; }
.scroll-animate-stagger.animated > *:nth-child(3) { animation-delay: 0.3s; }
.scroll-animate-stagger.animated > *:nth-child(4) { animation-delay: 0.4s; }
.scroll-animate-stagger.animated > *:nth-child(5) { animation-delay: 0.5s; }
.scroll-animate-stagger.animated > *:nth-child(6) { animation-delay: 0.6s; }
.scroll-animate-stagger.animated > *:nth-child(7) { animation-delay: 0.7s; }
.scroll-animate-stagger.animated > *:nth-child(8) { animation-delay: 0.8s; }

/* Contact Section */
.contact-title-section {
    position: relative;
    padding: 8rem 0;
    margin-top: 110px;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 767px) {
    .contact-title-section {
        margin-top: 90px;
        padding: 6rem 0;
        min-height: 300px;
    }
}

.contact-title-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact-title-bg-image {
    width: 100%;
    height: 100%;
}

.contact-title-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

.contact-title-section .container {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: 'GameCube', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

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

.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

@media (max-width: 767px) {
    .contact-section {
        padding: 4rem 1rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.contact-form-title,
.contact-info-title {
    font-family: 'GameCube', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #8b1538;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .contact-form-title,
    .contact-info-title {
        font-size: 1.75rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-label {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    letter-spacing: 0.01em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 767px) {
    .form-input,
    .form-textarea {
        padding: 0.875rem 1.25rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.25rem 0;
    }
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: none;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
}

.contact-info-content {
    flex: 1;
}

.contact-info-item-title {
    font-family: 'GameCube', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-info-item-text {
    color: var(--gray-700);
    line-height: 1.7;
    white-space: pre-line;
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.map-placeholder svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    width: 100%;
}

.footer .container {
    max-width: none;
    width: 100%;
    padding: 0 2rem;
}

@media (min-width: 1440px) {
    .footer .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1920px) {
    .footer .container {
        padding: 0 4rem;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 3rem 1rem 2rem;
        background-image: none;
    }
    
    .footer::before {
        display: none;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo img {
        height: 60px;
    }
}

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: var(--white);
    line-height: 1.6;
}

.footer-heading {
    font-family: 'GameCube', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--white);
}

/* Laser Beams Background Animation */
.laser-beams-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

@keyframes laserBeamfast {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
    }
}

@keyframes laserBeamslow {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    40% {
        opacity: 1;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}

@keyframes laserBeampulse {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    30% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    70% {
        opacity: 1;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 5rem;
}
