/* Ham World CSS - Child-friendly, modern, responsive design */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Comic Neue', cursive, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffb6d9 0%, #ffd6e8 50%, #ffe8f1 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive, sans-serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #8B0000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2.5rem;
    color: #C41E3A;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: #8B0000;
}

h4 {
    font-size: 1.4rem;
    color: #C41E3A;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #ff69b4 0%, #d1477a 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}


.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #8B0000;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.7);
}

.nav-logo:hover .logo-text,
.nav-logo:focus .logo-text,
.nav-logo:active .logo-text,
.nav-logo:visited .logo-text {
    color: #8B0000 !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(135deg, #ff69b4, #8B0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #C41E3A;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.cta-button {
    background: linear-gradient(135deg, #ff69b4, #d1477a);
    color: white;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.6);
}

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

.hero-placeholder {
    background: linear-gradient(135deg, #ffd6e8, #ffb6d9);
    border: 3px dashed #ff69b4;
    border-radius: 20px;
    padding: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B0000;
    text-align: center;
    animation: pulse 3s infinite;
}

/* Image Styles */
.hero-img, .ride-img, .product-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin: 1rem 0;
    image-rendering: auto;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.hero-img {
    max-height: 600px;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ride-img {
    height: auto;
    max-height: none;
    object-fit: contain;
    filter: contrast(1.15) brightness(1.1) saturate(1.2);
}

.product-img {
    height: 180px;
    object-fit: contain;
    filter: contrast(1.05) brightness(1.02) saturate(1.05);
    image-rendering: auto;
    background: white;
    border-radius: 15px;
}

.hero-img:hover, .ride-img:hover, .product-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    filter: contrast(1.2) brightness(1.1) saturate(1.2);
}

/* Ham World Logo - Header styling */
.ham-world-logo {
    background: none !important;
    background-color: transparent !important;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform: none !important;
}

/* Footer Ham Logo - Match header logo style */
.footer-ham-logo {
    background: none !important;
    background-color: transparent !important;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Placeholder Images (fallback) */
.placeholder-image {
    background: linear-gradient(135deg, #ffb6d9, #ffd6e8);
    border: 2px solid #ff69b4;
    border-radius: 15px;
    padding: 2rem 1rem;
    margin: 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B0000;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

/* Sections */
section {
    padding: 4rem 0;
    margin: 2rem 0;
}

.about {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,248,250,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background: linear-gradient(135deg, #ff69b4, #d1477a);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.stat-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Endorsements */
.endorsements {
    background: linear-gradient(135deg, rgba(255,248,250,0.9) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
}

.endorsement-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.endorsement-card {
    background: linear-gradient(135deg, #ffb6d9, #ffd6e8);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #ff69b4;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.endorsement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
}

.endorsement-card.peppa {
    background: linear-gradient(135deg, #ff69b4, #ffb6d9);
    border-color: #d1477a;
    border-width: 4px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author {
    font-weight: 700;
    color: #8B0000;
    text-align: right;
}

/* Rides Section */
.rides {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,248,250,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
}

.ride-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ride-card {
    background: linear-gradient(135deg, #ffd6e8, #ffb6d9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ride-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
}

.ride-card h3 {
    margin: 1rem 0;
}

.ride-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ride-rating {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Shop Section */
.shop {
    background: linear-gradient(135deg, rgba(255,248,250,0.9) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.shop p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #ffb6d9, #ffd6e8);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.product-card h4 {
    margin: 1rem 0 0.5rem;
}

.product-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Food Court Section */
.food-court {
    background: linear-gradient(135deg, rgba(255,236,243,0.9) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.food-court p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.nutrition-info {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #ff69b4;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.nutrition-info p {
    margin-bottom: 0.5rem;
}

.nutrition-info p:last-child {
    margin-bottom: 0;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.food-card {
    background: linear-gradient(135deg, #ffccd5, #ffe0e6);
    border: 3px solid #ff69b4;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.food-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.food-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
    border-color: #ff1493;
}

.food-card h4 {
    margin: 1rem 0 0.5rem;
    color: #8B0000;
}

.food-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.food-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Café Section */
.cafe {
    background: linear-gradient(135deg, rgba(255,240,245,0.9) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.cafe p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.cafe-hero {
    margin-bottom: 4rem;
}

.cafe-hero-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cafe-hero-img:hover {
    transform: scale(1.02);
}

.cafe-menu {
    margin-bottom: 4rem;
}

.cafe-menu h3 {
    margin-bottom: 2rem;
    color: #8B0000;
    text-align: center;
    font-size: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-card {
    background: linear-gradient(135deg, #ffe0e6, #ffccd5);
    border: 3px solid #ff69b4;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
}

.menu-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.menu-card h4 {
    margin: 1rem 0 0.5rem;
    color: #8B0000;
}

.menu-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: left;
}

.menu-price {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.cafe-atmosphere {
    margin-bottom: 4rem;
}

.atmosphere-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.atmosphere-text h3 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.atmosphere-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.atmosphere-text ul {
    list-style: none;
    padding: 0;
}

.atmosphere-text li {
    padding: 0.5rem 0;
    color: #2c3e50;
    position: relative;
    padding-left: 1.5rem;
}

.atmosphere-text li::before {
    content: "🐷";
    position: absolute;
    left: 0;
}

.atmosphere-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.beverages-section {
    margin-bottom: 2rem;
}

.beverages-section h3 {
    color: #8B0000;
    margin-bottom: 2rem;
}

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

.beverages-text {
    text-align: left;
}

.beverages-text h4 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.beverages-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.beverages-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.beverages-text li {
    padding: 0.3rem 0;
    color: #2c3e50;
}

.beverages-price {
    background: linear-gradient(135deg, #ff69b4, #ffb6d9);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.beverages-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Jokes Section */
.jokes {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,248,250,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.jokes p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.joke-card {
    background: linear-gradient(135deg, #ffd6e8, #ffb6d9);
    border: 3px solid #ff69b4;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.joke-card:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.joke-card h4 {
    margin-bottom: 1rem;
    color: #C41E3A;
}

.joke-card p {
    font-size: 1rem;
    font-weight: 700;
    color: #8B0000;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, rgba(255,248,250,0.9) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #ffb6d9, #ffd6e8);
    border: 3px solid #ff69b4;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.reviewer {
    font-weight: 700;
    color: #8B0000;
}

.visit-date {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Visit Info Section */
.visit-info {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,248,250,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.visit-getting-here {
    width: 100%;
    margin-top: 1rem;
}

.visit-card-full {
    width: 100%;
    background: linear-gradient(135deg, #ffd6e8, #ffb6d9);
    border: 3px solid #ff69b4;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.visit-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.transport-option {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.transport-option p {
    margin: 0;
    font-size: 0.95rem;
}

.visit-card {
    background: linear-gradient(135deg, #ffd6e8, #ffb6d9);
    border: 3px solid #ff69b4;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.visit-card h3 {
    margin-bottom: 1rem;
    color: #C41E3A;
}

.visit-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.visit-card strong {
    color: #8B0000;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(255,248,250,0.9) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 30px;
    margin: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: linear-gradient(135deg, #ffb6d9, #ffd6e8);
    border: 3px solid #ff69b4;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.contact-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #8B0000;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff69b4 0%, #d1477a 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffb6d9;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #ffb6d9;
}

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

.footer-logo span {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 2px solid #ffb6d9;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 140px;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Optimize section margins for mobile */
    section {
        margin: 1rem 0;
    }

    .about,
    .endorsements,
    .rides,
    .shop,
    .food-court,
    .cafe,
    .jokes,
    .reviews,
    .visit-info,
    .contact {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .ride-grid,
    .product-grid,
    .jokes-grid,
    .reviews-grid,
    .visit-grid,
    .menu-grid,
    .food-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Optimize card widths and spacing for mobile */
    .ride-card,
    .product-card,
    .food-card,
    .menu-card,
    .joke-card,
    .review-card {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem;
    }

    /* Ensure cards use optimal width with comfortable margins */
    .product-grid,
    .food-grid,
    .ride-grid,
    .menu-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .transport-options {
        grid-template-columns: 1fr;
    }

    .endorsement-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .atmosphere-content,
    .beverages-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .atmosphere-content .atmosphere-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.3rem 0.8rem;
        font-size: 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 105, 180, 0.8);
    transform: scale(1.1);
}

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

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff69b4, #d1477a);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    margin: 0;
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.cookie-accept {
    background: white;
    color: #ff69b4;
}

.cookie-accept:hover {
    background: #ffe8f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .modal,
    .cookie-consent {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        margin-top: 0;
    }
}