:root {
  --royal-blue: #0056a3;
  --white: #ffffff;
  --mustard-yellow: #ffc400;
  --light-yellow: #fff5b0;
  --orange-red: #f94144;
  --dark-gray: #2d2d2d;
  --banana-yellow: #ffe08f;
  --sky-blue: #1976d2;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.bg-hero {
    background-image: url('./public/corndogs_img/_corn-dog-1920-1778-w\ \(2\).png');
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(ellipse at center, rgba(255, 87, 34, 0.8) 0%, rgba(255, 87, 34, 0.9) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary-hero {
    background-color: var(--yellow-accent);
    color: #333;
}

.btn-secondary-hero:hover {
    background-color: #ffca28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #333;
}

.btn-primary-hero {
    background-color: var(--yellow-accent);
    color: #333;
}

.btn-primary-hero:hover {
    background-color: #ffca28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #333;
}

.corn-dogs-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

.corn-dog {
    width: 80px;
    height: 200px;
    margin: 0 10px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.corn-dog:nth-child(1) { animation-delay: 0s; }
.corn-dog:nth-child(2) { animation-delay: 0.5s; }
.corn-dog:nth-child(3) { animation-delay: 1s; }
.corn-dog:nth-child(4) { animation-delay: 1.5s; }
.corn-dog:nth-child(5) { animation-delay: 2s; }

.corn-dog-stick {
    width: 6px;
    height: 120px;
    background-color: #8d6e63;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.corn-dog-coating {
    width: 60px;
    height: 100px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px 30px 20px 20px;
}

.corn-dog:nth-child(1) .corn-dog-coating {
    background: linear-gradient(45deg, #ff5722, #ff7043);
}

.corn-dog:nth-child(2) .corn-dog-coating {
    background: linear-gradient(45deg, #ffc107, #ffca28);
}

.corn-dog:nth-child(3) .corn-dog-coating {
    background: linear-gradient(45deg, #ff9800, #ffb74d);
}

.corn-dog:nth-child(4) .corn-dog-coating {
    background: linear-gradient(45deg, #ffffff, #f5f5f5);
}

.corn-dog:nth-child(5) .corn-dog-coating {
    background: linear-gradient(45deg, #ff5722, #ff8a65);
}

.drizzle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(255, 193, 7, 0.8) 8px,
            rgba(255, 193, 7, 0.8) 10px
        );
    border-radius: inherit;
}

.bottom-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.btn-bottom-cta {
    background-color: rgba(255, 87, 34, 0.9);
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-bottom-cta:hover {
    background-color: white;
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.coating-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.coating-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.coating-circle.selected {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.coating-circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
}

.coating-item {
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.coating-item:hover {
    opacity: 0.9;
}

.coating-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.coating-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    min-height: 120px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.loading-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.coating-grid {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.coating-grid.loaded {
    opacity: 1;
}

.filling-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .filling-circle:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .filling-circle.selected {
            box-shadow: 0 0 0 4px #007bff;
        }
        
        .filling-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .filling-item {
            text-align: center;
            margin-bottom: 30px;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        
        .filling-item:hover {
            opacity: 0.9;
        }
        
        .filling-title {
            font-weight: bold;
            font-size: 1rem;
            color: #333;
            line-height: 1.3;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 40px;
        }
        
        .loading-placeholder {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }
        
        .filling-grid {
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .filling-grid.loaded {
            opacity: 1;
        }
        
        /* Background colors for each filling type */
        .spicy-sausage { background-color: #2c2c2c; }
        .cheddar-mozzarella { background-color: #f4a261; }
        .plant-based { background-color: #2a9d8f; }
        .mozzarella-sausage { background-color: #e76f51; }
        .real-mozzarella { background-color: #e9c46a; }
        .beef-sausage { background-color: #e63946; }
        
        @media (max-width: 576px) {
            
        }

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 250px;
        text-align: center;
    }
    
    .corn-dog {
        width: 60px;
        height: 150px;
        margin: 0 5px;
    }
    
    .corn-dog-coating {
        width: 45px;
        height: 75px;
        bottom: 60px;
    }
    
    .corn-dog-stick {
        height: 90px;
        width: 4px;
    }

    .coating-circle {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .coating-title {
        font-size: 1rem;
    }
    
    .coating-description {
        font-size: 0.8rem;
        min-height: 100px;
    }

    .filling-circle {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .filling-title {
        font-size: 0.9rem;
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .coating-circle {
        width: 90px;
        height: 90px;
    }
    
     .hero-subtitle {
        font-family: "Gowun Batang", serif !important;
    }

    .hero-title {
        font-family: "Gowun Batang", serif !important;
    }
    
    .coating-description {
        min-height: 90px;
    }

    .filling-circle {
        width: 90px;
        height: 90px;
    }
    
    .filling-title {
        font-size: 0.8rem;
        min-height: 40px;
    }
}

.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 70px;
  width: 150px;
  transition: transform 0.3s ease;
}

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

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 600;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--royal-blue) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 50%;
  background: var(--mustard-yellow);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.btn-order {
  background: var(--orange-red) !important;
  color: var(--white) !important;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 65, 68, 0.3);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 65, 68, 0.4);
}

/* STEP 3: SIDES STYLES */
.side-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.side-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.side-container.selected {
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.side-container img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 50%;
}

.side-item {
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.side-item:hover {
    opacity: 0.9;
}

.side-title {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.side-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    min-height: 60px;
}

.side-grid {
    opacity: 0;
    transition: opacity 0.5s ease;
     max-width: 900px;
      margin: 0 auto;
}

.side-grid.loaded {
    opacity: 1;
}

/* STEP 4: SLUSH AND MILK TEA STYLES */
.slush-container, .milk-tea-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.slush-container:hover, .milk-tea-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slush-container.selected, .milk-tea-container.selected {
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
    transform: scale(1.08);
}

.slush-container img, .milk-tea-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.slush-item, .milk-tea-item {
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slush-item:hover, .milk-tea-item:hover {
    opacity: 0.9;
}

.slush-title, .milk-tea-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slush-calories, .milk-tea-calories {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.slush-grid, .milk-tea-grid {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slush-grid.loaded, .milk-tea-grid.loaded {
    opacity: 1;
}

/* Milk tea container slightly smaller */
.milk-tea-container {
    width: 120px;
    height: 120px;
}

.milk-tea-title {
    font-size: 1rem;
    min-height: 45px;
}

/* Section spacing */
.section-title {
    margin-top: 60px;
    margin-bottom: 40px;
}

.section-title:first-of-type {
    margin-top: 40px;
}

/* RESPONSIVE DESIGN FOR STEPS 3 & 4 */
@media (max-width: 768px) {
    .side-container {
        width: 140px;
        height: 140px;
    }
    
    .side-title {
        font-size: 1.1rem;
    }
    
    .side-description {
        font-size: 0.85rem;
        min-height: 50px;
    }
    
    .slush-container {
        width: 120px;
        height: 120px;
    }
    
    .milk-tea-container {
        width: 100px;
        height: 100px;
    }
    
    .slush-title, .milk-tea-title {
        font-size: 1rem;
        min-height: 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-top: 50px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .side-container {
        width: 120px;
        height: 120px;
    }
    
    .side-title {
        font-size: 1rem;
    }
    
    .side-description {
        font-size: 0.8rem;
        min-height: 45px;
    }
    
    .slush-container {
        width: 100px;
        height: 100px;
    }
    
    .milk-tea-container {
        width: 80px;
        height: 80px;
    }
    
    .slush-title, .milk-tea-title {
        font-size: 0.9rem;
        min-height: 35px;
    }
    
    .slush-calories, .milk-tea-calories {
        font-size: 0.8rem;
    }
}

/* Loading states for new sections */
.side-grid .loading-placeholder,
.slush-grid .loading-placeholder,
.milk-tea-grid .loading-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}


.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 50px 0 20px;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer h5 {
  color: var(--mustard-yellow);
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer a:hover {
  color: var(--mustard-yellow);
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--royal-blue);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--mustard-yellow);
  color: var(--royal-blue);
  transform: translateY(-3px);
}



