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

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

body {
    font-family: 'Heebo', sans-serif;
    background-color: #171717;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    gap: 8px;
}

.btn-primary {
    background-color: #F59E0B;
    color: #1F2937;
}

.btn-primary:hover {
    background-color: #D97706;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #F59E0B;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #FCD34D;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 96px;
    height: 4px;
    background-color: #F59E0B;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(23, 23, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.moon-icon {
    position: relative;
    /* Completely clean - no animations, background, border, or effects */
}

.sparkles {
    position: absolute;
    inset: 0;
    /* Removed all sparkle animations */
}

.sparkle {
    /* Removed all sparkle effects */
}

.sparkle-1 {
    /* Removed */
}

.sparkle-2 {
    /* Removed */
}

.sparkle-3 {
    /* Removed */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #F59E0B;
    /* Removed gradient and animations for clean look */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F59E0B;
}

.nav-cta {
    background-color: #F59E0B;
    color: #1F2937;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #D97706;
    transform: scale(1.05);
}

/* ✨ אנימציה לכוכבים סביב הלוגו */
@keyframes sparkle-move-1 {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  50% { transform: translate(3px, -3px) rotate(15deg); opacity: 0.8; }
  100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
}

@keyframes sparkle-move-2 {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  50% { transform: translate(-3px, 3px) rotate(-15deg); opacity: 0.8; }
  100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
}

@keyframes sparkle-move-3 {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(2px, 2px) scale(1.2); opacity: 0.6; }
  100% { transform: translate(0, 0) scale(1); opacity: 1; }
}

.sparkle {
  position: absolute;
  font-size: 14px;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  pointer-events: none;
}

.sparkle-1 {
  top: -5px;
  left: 15px;
  animation-name: sparkle-move-1;
}

.sparkle-2 {
  top: 5px;
  left: 30px;
  animation-name: sparkle-move-2;
}

.sparkle-3 {
  top: 10px;
  left: 5px;
  animation-name: sparkle-move-3;
}


/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    background-color: rgba(23, 23, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #ffffff;
    padding: 0.5rem 0;
    text-align: right;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #F59E0B;
}

.mobile-nav-cta {
    background-color: #F59E0B;
    color: #1F2937;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
}

.mobile-social {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: rgba(55, 65, 81, 0.3);
}

.social-link:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(23, 23, 23, 0.9));
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #171717;
}

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

.feature-card {
    background-color: #262626;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #374151;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #2D2D2D;
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #F59E0B;
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.feature-card:hover .feature-icon {
    background-color: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    color: #F59E0B;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-description {
    color: #D1D5DB;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    margin-top: 5rem;
}

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

.about-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.about-title {
    font-size: 2.5rem;
    color: #F59E0B;
    margin-bottom: 1rem;
}

.about-divider {
    width: 80px;
    height: 4px;
    background-color: #F59E0B;
    margin-bottom: 2rem;
}

.about-text {
    color: #D1D5DB;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight-box {
    background-color: rgba(245, 158, 11, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #D1D5DB;
}

.highlight-box li::before {
    content: '✔️';
    color: #F59E0B;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-box {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    text-align: center;
    margin: 2rem 0;
}

.cta-box p:first-child {
    color: #F59E0B;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.cta-box p:last-child {
    color: #D1D5DB;
    margin-bottom: 0;
}

/* Event Types */
.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.event-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(38, 38, 38, 0.5);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.3s ease;
}

.event-type:hover {
    border-color: rgba(245, 158, 11, 0.3);
    background-color: rgba(38, 38, 38, 0.8);
}

.event-icon {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 12px;
    border-radius: 8px;
    color: #F59E0B;
    flex-shrink: 0;
}

.event-type h4 {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.event-type p {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin: 0;
}

/* Additional Info */
.additional-info {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(38, 38, 38, 0.3);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.info-icon {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 12px;
    border-radius: 8px;
    color: #F59E0B;
    flex-shrink: 0;
}

.info-item h4 {
    color: #F59E0B;
    font-size: 1rem;
    margin: 0;
}

.about-cta {
    margin-top: 2rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: #262626;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 25px;
    border: none;
    background-color: #374151;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #F59E0B;
    color: #1F2937;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Video Items */
.video-item {
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-media img,
.lightbox-media video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

/* Catering Section */
.catering {
    padding: 5rem 0;
    background-color: #171717;
}

.catering-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.catering-icon svg {
    color: #F59E0B;
}

.catering-content {
    max-width: 1000px;
    margin: 0 auto;
}

.catering-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.catering-option {
    background-color: #374151;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.catering-option:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
}

.option-icon {
    background-color: rgba(245, 158, 11, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
    margin-bottom: 1rem;
}

.catering-option h3 {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.catering-option p {
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
}

.catering-conclusion {
    text-align: center;
    background-color: rgba(245, 158, 11, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.conclusion-icon {
    background-color: rgba(245, 158, 11, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
    margin: 0 auto 1rem;
}

.catering-conclusion h3 {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.catering-conclusion p {
    color: #D1D5DB;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #171717;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    color: #F59E0B;
    font-size: 2rem;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.rating-subtitle {
    color: #9CA3AF;
    margin: 0;
}

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

.testimonial-card {
    background-color: #262626;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 158, 11, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    color: #F59E0B;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 3rem;
    color: rgba(245, 158, 11, 0.2);
    font-family: serif;
}

.testimonial-author {
    color: #F59E0B;
    font-weight: 600;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid #374151;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #262626;
}

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

.contact-info {
    background-color: #171717;
    padding: 2rem;
    border-radius: 1rem;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 12px;
    border-radius: 8px;
    color: #F59E0B;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #F59E0B;
}

.waze-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F59E0B;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-item a {
    color: #D1D5DB;
    font-size: 1.125rem;
}

.phone-item span {
    color: #F59E0B;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Social Section */
.social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.social-section h3 {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #262626;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.social-link:hover {
    background-color: #2D2D2D;
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    border-color: #E1306C;
    color: #E1306C;
}

.social-link.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

/* Hours Section */
.hours-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.hours-section h3 {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-info {
    background-color: #171717;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #374151;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #D1D5DB;
}

.hours-item:last-of-type {
    margin-bottom: 1rem;
}

.hours-item span:last-child {
    color: #F59E0B;
    font-weight: 700;
}

.hours-note {
    color: #FCD34D;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #374151;
}

/* Contact Form */
.contact-form-container {
    background-color: #171717;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form-container h3 {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group label {
    color: #F59E0B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background-color: #262626;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22C55E;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

/* Footer */
.footer {
    background-color: #0F0F0F;
    border-top: 1px solid #374151;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #F59E0B;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-subtitle {
    color: #F59E0B;
    font-size: 1.25rem;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #F59E0B;
    color: #1F2937;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background-color: #D97706;
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #D1D5DB;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-nav a:hover {
    color: #F59E0B;
    transform: translateX(5px);
}

.footer-events {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-event {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #D1D5DB;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-event:hover {
    color: #F59E0B;
    transform: translateX(5px);
}

.footer-event svg {
    color: #F59E0B;
    flex-shrink: 0;
}

.footer-event span {
    font-size: 0.875rem;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-box {
    background-color: #171717;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #374151;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-phones .phone-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-phones .phone-item svg {
    color: #F59E0B;
    flex-shrink: 0;
}

.footer-phones .phone-item div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-phones .phone-item a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.footer-phones .phone-item a:hover {
    color: #F59E0B;
}

.footer-phones .phone-item span {
    color: #F59E0B;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    background-color: #0F0F0F;
}

.footer-bottom-content {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom-content p {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom-content p:last-child {
    margin-bottom: 0;
}

.footer-tagline {
    color: #F59E0B;
    font-weight: 500;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: #ffffff;
    color: #1F2937;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20BD5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Removed all animations and glow effects */
/* No more @keyframes float, sparkle, pulse, or glow */

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .catering-options {
        grid-template-columns: 1fr;
    }
    
    .event-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .testimonial-card,
    .catering-option {
        padding: 1.5rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .lightbox {
        padding: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #171717;
}

::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F59E0B;
}

/* Selection */
::selection {
    background: rgba(245, 158, 11, 0.3);
    color: #ffffff;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    .lightbox {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-video {
        display: none;
    }
    
    .hero {
        background: #f5f5f5;
        color: black;
    }
}