/* Global Reset & Variables */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #FDC55E;
    --primary-hover: #EBB045;
    --secondary-color: #FF7B54;
    --text-dark: #2D2D2D;
    --text-muted: #666666;
    --bg-light: #FAFAFA;
    --bg-cream: #FFF9F1;
    --border-radius: 16px;
    
    /* Enhanced Shadows & Outlines */
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --card-border: 2px solid #F0F0F0;
    --card-border-hover: 2px solid #FDC55E;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Fredoka', sans-serif; /* Rounded heading font matching the image */
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 0 rgba(0,0,0,0.02); /* Subtle text depth */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Navbar - Glassmorphism Effect */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.brand-icon {
    background-color: var(--text-dark); /* Changed to dark for contrast */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.6rem;
    margin-left: 8px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 12px;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-dark) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    box-shadow: 0 8px 15px rgba(253, 197, 94, 0.3);
}

.btn-primary:hover {
    background-color: #ffd075;
    border-color: #ffd075;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(253, 197, 94, 0.4);
}

.btn-outline-dark {
    border: 2px solid #ddd;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    color: var(--text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    /* Creative subtle background pattern */
    background: 
        radial-gradient(circle at 90% 10%, #fffbf2 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, #fffbf2 0%, transparent 40%);
    position: relative;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text .emoji {
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.1));
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Hero Images & Orbits */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.main-dish-circle {
    position: relative;
    z-index: 2;
}

.main-img {
    width: 480px;
    height: 480px;
    object-fit: cover;
    border-radius: 50%;
    /* Creative border */
    border: 20px solid rgba(255, 255, 255, 0.9); 
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.08), /* Outer hairline definition */
        0 25px 60px rgba(0,0,0,0.15); /* Deep shadow */
}

.orbit-badge {
    position: absolute;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    border: 2px solid #fff; /* White border to separate from bg */
}

.orbit-badge:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.orbit-badge img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Specific delays for float animation to look organic */
.badge-1 { top: 5%; right: 15%; animation-delay: 0s; }
.badge-2 { top: 35%; right: 0%; animation-delay: 1s; }
.badge-3 { bottom: 25%; right: 5%; animation-delay: 2s; }
.badge-4 { bottom: 5%; right: 25%; animation-delay: 3s; }
.badge-5 { bottom: 15%; left: 10%; animation-delay: 4s; }

.decorative-leaf {
    position: absolute;
    top: -40px;
    left: 10%;
    z-index: 1;
    opacity: 0.9;
    animation: rotateLeaf 10s linear infinite alternate;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@keyframes rotateLeaf {
    from { transform: rotate(-10deg); }
    to { transform: rotate(10deg); }
}

/* Common Section Styles */
.section-title {
    font-weight: 700;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Popular Dishes Cards */
.food-card {
    border-radius: 24px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: var(--card-border);
    padding: 1.5rem !important;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.food-card:hover {
    box-shadow: var(--shadow-hover);
    border: var(--card-border-hover);
    transform: translateY(-8px);
}

.card-img-top img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    border: 6px solid #fff; /* White rim around food */
}

.food-card:hover .card-img-top img {
    transform: scale(1.08) rotate(3deg);
}

.food-card h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rating {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

/* About Section */
.collage-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.main-chef-img {
    border-radius: 300px 300px 20px 20px;
    box-shadow: 0 20px 0px #FFF3E0, 0 30px 60px rgba(0,0,0,0.1); /* Layered shadow */
    width: 100%;
    border: 8px solid #fff;
}

.floating-img {
    position: absolute;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: float 5s ease-in-out infinite;
}
.f-1 { top: 20%; left: -15%; width: 80px; animation-delay: 0.5s; }
.f-2 { bottom: 30%; right: -15%; width: 90px; animation-delay: 1.5s; }
.f-3 { bottom: 5%; left: 0%; width: 70px; animation-delay: 2.5s; }

/* Service Icons */
.service-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 15px;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Added subtle shadow */
}

.service-list .col-md-6:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Coloring individual service icons based on the image pattern */
.service-list .col-md-6:nth-child(1) .service-icon { background: #E3F2FD; color: #2196F3; }
.service-list .col-md-6:nth-child(2) .service-icon { background: #FCE4EC; color: #E91E63; }
.service-list .col-md-6:nth-child(3) .service-icon { background: #FFF8E1; color: #FFC107; }
.service-list .col-md-6:nth-child(4) .service-icon { background: #FFF3E0; color: #FF9800; }
.service-list .col-md-6:nth-child(5) .service-icon { background: #E8F5E9; color: #4CAF50; }
.service-list .col-md-6:nth-child(6) .service-icon { background: #F3E5F5; color: #9C27B0; }

.service-list .col-md-6 {
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Menu Tabs */
.btn-menu-tab {
    border: 2px solid #EEE;
    background: #fff;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    color: var(--text-muted);
}

.btn-menu-tab:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-menu-tab.active, .btn-menu-tab.active-yellow {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 8px 20px rgba(253, 197, 94, 0.4);
}

/* Reservation */
.reservation-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #EFA696 0%, #EFA696 60%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.2;
}

.reservation-img {
    position: relative;
    z-index: 2;
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid #fff;
    box-shadow: var(--shadow-hover);
}

/* Testimonials */
.testimonials .card {
    border-radius: 24px;
    background-color: #FFF8E7 !important; 
    transition: transform 0.3s;
    border: 2px solid transparent; /* Prepare for hover border */
    box-shadow: var(--shadow-soft);
}

.testimonials .card:hover {
    transform: translateY(-5px);
    border-color: #FDC55E; /* Yellow border on hover */
    box-shadow: var(--shadow-hover);
}

.slider-nav .btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.slider-nav .btn-light {
    border-color: #eee;
}

.slider-nav .btn:hover {
    transform: scale(1.1);
}

/* Chefs */
.chef-card {
    background: #fff;
    padding: 15px;
    border-radius: 24px;
    transition: 0.3s;
    border: var(--card-border);
    box-shadow: var(--shadow-soft);
}

.chef-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.chef-card img {
    border-radius: 20px;
    filter: none; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* App Download */
.bg-light-cream {
    background-color: #fff;
}

.app-banner {
    background-color: #FFF9F1 !important;
    border: 3px dashed #FDC55E; /* Thicker dashed border */
    box-shadow: var(--shadow-soft);
}

.phone-mockup {
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.app-banner:hover .phone-mockup {
    transform: rotate(0deg) scale(1.05);
}

/* Footer */
.footer {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid #f0f0f0;
}

.footer .navbar-brand span {
    font-size: 1.8rem;
}

.footer h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
    font-weight: 500;
}

.footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px; /* Subtle movement */
}

/* Newsletter Input */
.footer-input {
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    position: relative;
    max-width: 320px;
}

.footer-input input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 20px;
    height: 45px;
    font-size: 0.95rem;
    width: 100%;
}

.footer-input input:focus {
    outline: none;
}

.footer-input button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(253, 197, 94, 0.4);
    min-width: 45px;
    margin-left: auto !important; /* Push to right */
    padding: 0;
}

.footer-input button:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

/* Social Icons */
.social-icons {
    margin-top: 1.5rem;
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 197, 94, 0.4);
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Internal Page Styles */
.page-header {
    padding-top: 160px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 50%, #FFF9F1 0%, #fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(253, 197, 94, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 123, 84, 0.05);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 0;
}

.page-header h1 {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #FFF9F1;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 5px solid #fff;
    height: 100%;
    min-height: 400px;
}

.form-control {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    background-color: #FAFAFA;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(253, 197, 94, 0.2);
    border-color: var(--primary-color);
    background-color: #fff;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Cart & Checkout Styles */
.cart-table th {
    background-color: transparent;
    font-weight: 600;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.cart-table td {
    vertical-align: middle;
    padding: 15px 0;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 15px;
}

.quantity-input {
    max-width: 120px;
}

.quantity-input .btn {
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.quantity-input input {
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
}

.summary-card {
    background-color: #FFF9F1;
    border-radius: 24px;
    padding: 30px;
    border: 2px solid #fff;
    box-shadow: var(--shadow-soft);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-total {
    border-top: 2px dashed #FDC55E;
    padding-top: 20px;
    margin-top: 20px;
}

/* 404 Page */
.error-page-img {
    font-size: 8rem;
    animation: float 4s ease-in-out infinite;
    display: block;
    margin-bottom: 20px;
}

/* Blog Page Styles */
.blog-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    flex-shrink: 0;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    transition: 0.3s;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.read-more-btn i {
    transition: 0.3s;
    margin-left: 5px;
}

.read-more-btn:hover {
    color: var(--primary-hover);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.search-form .form-control {
    border-radius: 50px;
    padding-left: 20px;
    border: 1px solid #eee;
}

.search-form .btn {
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 10px;
    width: 100%;
}

.cat-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.cat-list li {
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.cat-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cat-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s;
}

.cat-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.rp-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.rp-content h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 600;
}

.rp-content h6 a {
    color: var(--text-dark);
    transition: 0.3s;
}

.rp-content h6 a:hover {
    color: var(--primary-color);
}

.rp-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tag-cloud a {
    display: inline-block;
    padding: 8px 15px;
    background: #f8f9fa;
    color: var(--text-muted);
    border-radius: 50px;
    font-size: 0.85rem;
    margin: 0 5px 10px 0;
    font-weight: 500;
    border: 1px solid #eee;
    transition: 0.3s;
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    text-decoration: none;
}

/* Reservation Page Extras */
.ls-1 {
    letter-spacing: 1px;
}

.reservation-image-stack {
    position: relative;
    padding: 20px;
}

.reservation-image-stack img {
    border: 10px solid #fff;
    border-radius: 24px;
}

.decorative-pattern {
    top: -10px;
    left: -10px;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-text h1 { font-size: 2.8rem; text-align: center; }
    .hero-text p { text-align: center; }
    .hero-text .d-flex { justify-content: center; }
    .hero-section { padding-top: 100px; padding-bottom: 40px; }
    
    .hero-image-wrapper { margin-top: 3rem; }
    .main-img { width: 320px; height: 320px; border-width: 10px; }
    .orbit-badge { display: none; } /* Hide orbits on mobile */
    
    .reservation-bg-circle { width: 300px; height: 300px; }
    .reservation-img { width: 280px; height: 280px; }
    
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-hover);
        margin-top: 15px;
        border: 1px solid #eee;
    }
}