/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Tektur', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: black;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================
   HERO SECTION - RESPONSIVE UPDATES
   ================= */
/* =================
   HERO SECTION - MOBILE FIXES
   ================= */
.hero-section {
    background: black;
    color: white;
    padding: 80px 20px 60px; /* Reduced top padding */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(229, 70, 135, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(47, 188, 242, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    padding-right: 20px;
    font-family: 'Roboto';
}

.hero-title {
    font-family: 'Tektur';
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    background: #2FBCF2;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-direction: row;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.stat-item i {
    font-size: 1.5rem;
    color: #E54687;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta-btn {
    background: #E54687;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 0.6s both;
    width: fit-content;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #f73378, #4fc3f7);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 70, 135, 0.4);
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(229, 70, 135, 0.1), rgba(47, 188, 242, 0.1));
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #E54687;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* =================
   RESPONSIVE BREAKPOINTS - IMPROVED
   ================= */

/* Large screens adjustment */
@media (max-width: 1200px) {
    .hero-section {
        padding: 70px 20px 50px; /* Reduced padding */
        min-height: 90vh;
    }
    
    .hero-container {
        gap: 40px;
        max-width: 1100px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image-container {
        height: 450px;
    }
}

/* Tablet screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px ; /* Further reduced padding */
        min-height: 100vh;
        justify-content: center; /* Center content vertically */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2; /* Move content below image on mobile */
    }
    
    .hero-image-container {
        height: 280px; /* Reduced height for better mobile fit */
        order: 1; /* Move image above content on mobile */
    }
    
    .hero-title {
        font-size: 2.2rem; /* Smaller title for mobile */
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .stat-item i {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 1.4rem;
    }
    
    .hero-cta-btn {
        margin: 0 auto;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .image-carousel {
        border-radius: 15px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 10px 30px; /* Minimal padding for small screens */
        min-height: 105vh;
        align-items: flex-start;
        padding-top: 60px; /* Account for any navbar */
    }
    
    .hero-container {
        gap: 25px;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 20px;
        justify-content: space-around;
    }
    
    .stat-item i {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-image-container {
        height: 220px; /* Compact height for small screens */
    }
    
    .hero-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .image-carousel {
        border-radius: 12px;
    }
    
    .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-section {
        padding: 30px 8px 20px;
        min-height: 105vh; 
    }
    
    .hero-container {
        gap: 20px;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .stat-item i {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-image-container {
        height: 200px;
    }
    
    .hero-cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Ultra small screens (very old phones) */
@media (max-width: 320px) {
    .hero-section {
        padding: 25px 5px 15px;
        min-height: 110vh;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .hero-stats {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-image-container {
        height: 180px;
    }
    
    .hero-cta-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* =================
   CATEGORIES SECTION
   ================= */
.categories-section {
    background: black;
    color: white;
    padding: 60px 20px;
    min-height: 100vh;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(229, 70, 135, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(47, 188, 242, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.categories-title {
    font-family: 'Tektur';
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #E54687, #2FBCF2);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =================
   CATEGORY NAVIGATION
   ================= */
.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    color: white;
    border-color: #2FBCF2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 188, 242, 0.3);
}

.category-btn.active {
    background: linear-gradient(135deg, #E54687, #2FBCF2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 70, 135, 0.4);
}

.category-btn.active:hover {
    background: linear-gradient(135deg, #f73378, #4fc3f7);
    box-shadow: 0 10px 30px rgba(229, 70, 135, 0.5);
}

.category-btn i {
    font-size: 1rem;
}

/* =================
   DISHES CONTAINER
   ================= */
.dishes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.dish-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E54687, #2FBCF2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dish-card:hover::before {
    transform: scaleX(1);
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 70, 135, 0.2);
    border-color: rgba(47, 188, 242, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.dish-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    margin: 0;
    line-height: 1.3;
    font-family: 'Roboto';
}

.dish-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2FBCF2;
    background: rgba(47, 188, 242, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid rgba(47, 188, 242, 0.3);
}

.dish-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-category {
    font-size: 0.8rem;
    color: #E54687;
    background: rgba(229, 70, 135, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(229, 70, 135, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =================
   LOADING ANIMATION
   ================= */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.loading i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =================
   RESPONSIVE DESIGN
   ================= */
@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .categories-nav {
        gap: 12px;
        padding: 15px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .dishes-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 70px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-container {
        height: 600px;
    }
    
    .categories-section {
        padding: 40px 15px;
    }
    
    .categories-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .categories-nav {
        gap: 8px;
        padding: 12px;
        border-radius: 15px;
    }
    
    .category-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .category-btn i {
        font-size: 0.9rem;
    }
    
    /* Two dishes per row on tablet screens */
    .dishes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-top: 0%;
    }
    
    .dish-card {
        padding: 20px;
    }
    
    .dish-name {
        font-size: 1.2rem;
    }
    
    .dish-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2px;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .categories-nav {
        gap: 6px;
        padding: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .categories-nav::-webkit-scrollbar {
        display: none;
    }
    
    .category-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .categories-title {
        font-size: 1.5rem;
    }
    
    /* Two dishes per row on small mobile screens */
    .dishes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .dish-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .dish-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-bottom: 10px;
    }
    
    .dish-name {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .dish-price {
        font-size: 0.95rem;
        padding: 4px 8px;
        border-radius: 10px;
    }
    
    .dish-description {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .dish-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .dish-category {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 8px;
    }
}

/* =================
   RESPONSIVE QUERIES FOR 400-600PX SCREENS
   ================= */

/* Medium-small screens (500-600px) */
@media (min-width: 500px) and (max-width: 600px) {
    .hero-section {
        padding: 50px 16px 40px;
        min-height: 110vh;
    }
    
    .hero-container {
        gap: 35px;
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.15;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 25px;
        margin-bottom: 22px;
        justify-content: center;
    }
    
    .stat-item i {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .hero-cta-btn {
        padding: 11px 22px;
        font-size: 0.95rem;
        gap: 7px;
    }
    
    .categories-section {
        padding: 45px 16px;
    }
    
    .categories-title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .categories-nav {
        gap: 7px;
        padding: 11px;
        border-radius: 16px;
    }
    
    .category-btn {
        padding: 9px 14px;
        font-size: 0.82rem;
        gap: 7px;
    }
    
    /* Two dishes per row */
    .dishes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .dish-card {
        padding: 18px;
        border-radius: 16px;
    }
    
    .dish-name {
        font-size: 1.1rem;
    }
    
    .dish-price {
        font-size: 1rem;
        padding: 5px 10px;
    }
    
    .dish-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}
/* Small-medium screens (400-499px) */
@media (min-width: 400px) and (max-width: 499px) {
    .hero-section {
       /* padding: 45px 12px 10px; */
        min-height: calc(var(--vh, 1vh) * 100);
        align-items: flex-start;
        padding-top: 55px;
    }
    
    .hero-container {
        gap: 28px;
        margin-top: 18px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 16px;
        line-height: 1.45;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 22px;
        margin-bottom: 20px;
        justify-content: space-around;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-item i {
        font-size: 1.15rem;
        margin-bottom: 5px;
    }
    
    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    .hero-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .image-carousel {
        border-radius: 14px;
    }
    
    .carousel-indicators {
        bottom: 12px;
        gap: 7px;
    }
    
    .indicator {
        width: 9px;
        height: 9px;
    }
    
    .categories-section {
       padding: 10px 12px 40px;
    }
    
    .categories-title {
        font-size: 1.85rem;
        margin-bottom: 22px;
    }
    
    .categories-nav {
        gap: 6px;
        padding: 10px;
        border-radius: 15px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .categories-nav::-webkit-scrollbar {
        display: none;
    }
    
    .category-btn {
        padding: 8px 13px;
        font-size: 0.78rem;
        flex-shrink: 0;
        gap: 6px;
    }
    
    .dishes-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .dish-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .dish-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .dish-name {
        font-size: 1.2rem;
    }
    
    .dish-price {
        font-size: 1.1rem;
        padding: 5px 12px;
    }
    
    .dish-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .dish-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Landscape orientation adjustments for small screens */
@media (min-width: 400px) and (max-width: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: calc(var(--vh, 1vh) * 100);
        padding: 40px 16px 8px;
    }
    
    .hero-container {
        gap: 25px;
    }
    
    .hero-image-container {
        height: 280px;
    }
    
    .hero-stats {
        margin-bottom: 15px;
    }
    
    .categories-section {
        padding: 8px 16px 35px; 
    }
}

@media (min-width: 820px) and (max-width: 1366px) 
{
    .hero-section{
         min-height: calc(var(--vh, 1vh) * 100);
    }
}


/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
}

/* iPad Pro and similar tablet landscape */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
    }
}