/* ---- ANIMATION ------------- */
		
		/* body, html { margin: 0; padding: 0; overflow: hidden; font-family: 'Arial', sans-serif;} */
        
        /* The Intro Screen */
        #intro-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: #F1D45C; display: flex; flex-direction: column;
            align-items: center; justify-content: center; z-index: 1000;
            transition: opacity 1s ease-in-out; 
			color: #06183d;
			z-index: 1005;
        }

        /* The Van Animation */
        .van {
            transform: translateX(150vw);
            animation: driveIn 1.5s ease-out forwards;
        }
		
		
		@media (min-width: 769px) and (max-width: 1468px) {
		  .header-button {
			width: 70%; /* Adjust based on your image size */
		  }
		}
		
		@media (max-width: 768px) {
		  .van {
			width: 90%; /* Adjust based on your image size */
		  }
		}


		@media (min-width: 1469px) {
		  .van {
			width: 50%; /* Adjust based on your image size */
		  }
		}

		
		.blue {
			font-color: #06183d;
		}

        @keyframes driveIn {
            to { transform: translateX(0); }
        }

        /* The Welcome Message */
        .content {
            opacity: 0; text-align: center; max-width: 100%; padding: 20px;
            animation: fadeIn 0.5s ease-in 2.0s forwards;
        }

        @keyframes fadeIn { to { opacity: 1; } }

        .lets-go-btn {
            margin-top: 20px; padding: 12px 30px; background: #2196F3;
            color: white; border: none; border-radius: 25px; cursor: pointer;
            font-size: 1.2rem; transition: transform 0.2s;
        }
        .lets-go-btn:hover { transform: scale(1.05); }

        /* Hide the intro when ready */
        .fade-out { opacity: 0; pointer-events: none; }
		
		
		/* Define the animation behavior */
		/* 1. Define the Animations */
		@keyframes blink {
			0% { opacity: 1; }
			50% { opacity: 0.3; }
			100% { opacity: 1; }
		}

		@keyframes wave {
			0%, 100% { transform: translateY(0); }
			50% { transform: translateY(-15px); } /* Moves up and down */
		}

		/* 2. Apply both to your H1 */
		.blink-wavy {
			display: inline-block; /* Required for transform to work */
			border: #06183d 1px solid;
			color: #ff4f87 !important;
			
			
			padding: 12px 20px;
			border-radius: 10px;
			font-weight: bold;
			
			/* This runs both animations at once */
			animation: 
				blink 1s infinite, 
				wave 2s ease-in-out infinite; 
		}    

		.animation-font {
			font-size: 25px;
		}
/* -------------------MAIN WEB---------------------- */
	
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{
    background:#06183d;
    color:white;
    overflow-x:hidden;
}

:root{
    --primary:#F1D45C;
    --secondary:#ED949B; 
	/* #ff4f87; */
    --dark:#06183d;
    --light:#fff8e7;
}


body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  /* <!-- position: fixed; --> */
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal{
    position:fixed;
    inset:0;
	background: rgba(0, 0, 0, 0.5); /* dark transparent bg */
    display:none;          /* important */
    justify-content:center;
    align-items:center;
    z-index:9999;          /* important */
	width: 100%;
	max-height: 100%;
	overflow-y: auto;
	border-radius: 8px;
}

.modal-box{
    background: white;
    max-width:50%;
    padding:30px;
    color:#06183d;
    box-shadow:1px 1px 2px 2px rgba(0,0,0,0.4);
    animation:pop .25s ease;
    max-height: 90%;
	overflow-y: scroll;
}

@media (max-width: 972px) {
  .modal-box {
    max-width:90%;
  }
}


@keyframes pop{
    from{
        transform:scale(0.9);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.modal-box input,
.modal-box select{
    width:100%;
    padding:14px 15px;
    margin:10px 0;

    border:1px solid #ddd;
    border-radius:12px;

    font-size:15px;
    outline:none;
}

.modal-box input:focus,
.modal-box select:focus{
    border-color:#F1D45C;
    box-shadow:0 0 0 3px rgba(255,224,110,0.3);
}

/* submit button */
.modal-box .btn{
    width:100%;
    margin-top:15px;

    padding:15px;
    border:none;

    border-radius:40px;

    background:#F1D45C;
    color:#06183d;

    font-weight:bold;
    cursor:pointer;

    transition:.3s;
}

.modal-box .btn:hover{
    background:#ED949B;
    color:white;
    transform:translateY(-2px);
}

.header-button {
	font-size: 25px;
	padding: 10px;
}

@media (min-width: 769px) and (max-width: 972px) {
  .header-button {
    padding: 4px;
  }
}

.close{
    <!-- position:absolute; -->

    font-size:28px;
    font-weight:bold;

    color:#06183d;
    cursor:pointer;

    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    transition:.3s;
}

.close:hover{
    background:#F1D45C;
    transform:scale(1.1);
}

/* ========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

@media (min-width: 769px) and (max-width: 972px) {
  .container {
    width:97%;
  }
}

a{
    text-decoration:none;
}

.section{
    padding:100px 0;
	background: #06183d;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
}

.section-title p{
    color:#555;
    line-height:1.7;
    max-width:700px;
    margin:auto;
}

/* ========================= */
/* HEADER */
/* ========================= */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:#06183d;
    backdrop-filter:blur(10px);
    /* border-bottom:2px solid #06183d; */
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.logo-text h1{
    color:#06183d;
    line-height:1;
    font-size:30px;
}

.logo-text span{
    color:var(--secondary);
}

.logo-text small{
    display:block;
    margin-top:6px;
    color:#FFFFFF;
    font-size:12px;
    letter-spacing:1px;
}

.nav-links{
    display:inline;
    gap:30px;
}

.nav-links a{
    color:#FFFFFF;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--secondary);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
    position:relative;

  background:
	linear-gradient(
      rgba(6,24,61, 0.50),
      rgba(6,24,61, 0.65)
    ),
    url("images/CreamyJoyTitle.gif");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  overflow: hidden;

    /* background:  */
    /* /* linear-gradient(rgba(6,24,61,.82),rgba(6,24,61,.88)), */ */
	/* url("images/CreamyJoyTitle.gif") */
    /* /* url('https://images.unsplash.com/photo-1563805042-7684c019e1cb?q=80&w=1600&auto=format&fit=crop') */ */
    /* center/cover; */


	/* background: url("images/CreamyJoyTitle.gif") center center / contain no-repeat;	 */
}

.hero-content{
    width:100%;
    padding-top:130px;
}

.hero-logo{
    width:190px;
    border-radius:50%;
    margin-bottom:30px;
    box-shadow:0 0 40px rgba(255,224,110,.25);
}

.hero h2{
    font-size:74px;
    color:var(--primary);
    line-height:1.1;
    margin-bottom:10px;
}

.tagline{
    color:var(--secondary);
    font-size:28px;
    font-weight:bold;
    margin-bottom:25px;
}

.hero p{
    max-width:90%;
    margin:auto;
    font-size:25px;
    line-height:1.8;
    color:#f2f2f2;
}

.btn{
	font-size: 25px;
    display:inline-block;
    margin-top:35px;
    padding:16px 36px;
    border-radius:50px;
    background:var(--primary);
    color:var(--dark);
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:var(--secondary);
    color:white;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,224,110,0.35);
}

/* ========================= */
/* CARDS */
/* ========================= */

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    transition:.3s;
    border:1px solid #eee;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card-content{
    padding:28px;
}

.card h3{
    color:#ED949B;
    margin-bottom:12px;
    font-size:26px;
}

.card p{
    color:#555;
    line-height:1.7;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.feature{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
}

.feature h4{
    color:var(--primary);
    font-size:22px;
}

/* ========================= */
/* TESTIMONIALS */
/* ========================= */

.testimonials{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    padding:35px;
    border-radius:22px;
}

.testimonial p{
    line-height:1.8;
    color:#e5e5e5;
}

.testimonial h4{
    margin-top:20px;
    color:var(--primary);
}

/* ========================= */
/* CTA */
/* ========================= */

.cta{
    background:linear-gradient(135deg,var(--primary),#ffd146);
    color:var(--dark);
    padding:80px 40px;
    border-radius:35px;
    text-align:center;
}

.cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.cta .btn{
    background:var(--dark);
    color:white;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,0.08);
    color:white;
}

footer p {
	font-size:15px;
	line-height:20px;
}    /* color:white; */


.site-footer {
  background: #06183d;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  min-width: 180px;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 10px 0;
}

.footer-col p {
	margin: 10px 0;
}

.footer-col a:hover {
  color: #fff;
}

.socials a {
  margin-right: 10px;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}

.font-xxxl {
	    font-size: xxx-large;
}
/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:992px){

    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonials{
        grid-template-columns:1fr;
    }

    .hero h2{
        font-size:54px;
    }
}

@media(max-width:520px){
  .nav{
    margin: 2px;
    width: 98%;
    padding: 4px 0;
  }

}

@media(max-width:768px){

    .section{
        padding:70px 0;
    }

    .nav{
        /* flex-direction:column; */
        gap:18px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero h2{
        font-size:42px;
    }

    .tagline{
        font-size:20px;
    }

    .hero p{
        font-size:25px;
    }

    .hero-logo{
        width:150px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:34px;
    }

    .cta h2{
        font-size:36px;
    }
}


/* BLINK OFFER */

.blink-offer{
    background:#FF4F87;
    color:white !important;
    padding:8px 8px;
    border-radius:10px;
    font-weight:bold;
    animation:blink 1s infinite;
}


@media (max-width: 768px) {
  .blink-offer {
    font-size: 18px;
  }
}

@media (min-width: 769px) and (max-width: 972px) {
  .blink-offer {
    font-size: 25px;
	padding:5px 5px;
    border-radius:5px;

  }
}

@media (min-width: 973px) and (max-width: 1048px) {
  .blink-offer {
    font-size: 25px;
	padding:5px 5px;
    border-radius:5px;
  }
}

@media (min-width: 1049px) {
  .blink-offer {
    font-size:20px;
  }
}

@keyframes blink{
    50%{opacity:0.4;}
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
	/* gap: 12px; */
    align-items: baseline;
}

.form-grid input,
.form-grid select,
.form-grid textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:14px;
}

.form-grid textarea{
    grid-column:1 / -1;
    min-height:100px;
    resize:none;
}

/* MOBILE */
@media(max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }
}

.close-btn {
  width: 36px;
  height: 36px;

  border: none;
  border-radius: 50%;

  background: red;
  color: white;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: bold;

  padding: 0;
  line-height: 1;
}

/* Packages and Menu */
.packages-section {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.package-title {
  text-align: center;
  margin-bottom: 40px;
}

.table-wrapper,
.package-card {
  margin-bottom: 40px;
}

.package-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.package-table th,
.package-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.package-table th {
  background-color: #06183d;
  color: #ffffff;
}

.package-table td {
  background-color: #ffffff;
  color: #06183d;
}

.package-table td:first-child,
.package-table th:first-child {
  text-align: left;
}

.package-card {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
}

.event-list {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 768px) {

  .package-table th,
  .package-table td {
    font-size: 12px;
    padding: 8px;
  }

}

p {
	font-size: 25px;
}

h4 {
	font-size: 25px;
}




.privacy-policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;

  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: #333;
}

.privacy-policy h1 {
  margin-bottom: 20px;
  text-align: center;
}

.privacy-policy h2 {
  margin-top: 35px;
  margin-bottom: 10px;

  color: #111;
}

.privacy-policy ul {
  padding-left: 20px;
}

.privacy-policy p,
.privacy-policy li {
  font-size: 16px;
}

@media (max-width: 768px) {

  .privacy-policy {
    padding: 40px 16px;
  }

  .privacy-policy p,
  .privacy-policy li {
    font-size: 15px;
  }

}


.terms-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 60px 20px;

  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}

.terms-section h1 {
  text-align: center;
  margin-bottom: 30px;
}

.terms-section h2 {
  margin-top: 35px;
  margin-bottom: 12px;
  color: #111;
}

.terms-section p,
.terms-section li {
  font-size: 16px;
}

.terms-section ul {
  padding-left: 22px;
}

@media (max-width: 768px) {

  .terms-section {
    padding: 40px 16px;
  }

  .terms-section p,
  .terms-section li {
    font-size: 15px;
  }

}

.refund-policy {
  max-width: 950px;
  margin: 0 auto;
  padding: 60px 20px;

  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}

.refund-policy h1 {
  text-align: center;
  margin-bottom: 30px;
}

.refund-policy h2 {
  margin-top: 35px;
  margin-bottom: 12px;
  color: #111;
}

.refund-policy p,
.refund-policy li {
  font-size: 16px;
}

.refund-policy ul {
  padding-left: 22px;
}

@media (max-width: 768px) {

  .refund-policy {
    padding: 40px 16px;
  }

  .refund-policy p,
  .refund-policy li {
    font-size: 15px;
  }

}

.sweet-menu {
  padding: 70px 20px;
  background: #fff7fa;
  font-family: Arial, sans-serif;
}

.menu-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.menu-header h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.menu-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.menu-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.menu-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card h2 {
  margin-bottom: 18px;
  color: #ED949B;
}

.menu-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.menu-card li {
  margin-bottom: 8px;
  color: #444;
}

.menu-note {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .menu-header h1 {
    font-size: 32px;
  }

  .menu-header p {
    font-size: 15px;
  }

}


#goTopBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ff69b4; /* pink */
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
    transition:0.3s ease;
}

#goTopBtn:hover{
    background:#06183d;
    transform:translateY(-3px);
}



/* RIGHT SIDE */
.nav-right{
  display:flex;
  align-items:center;
  gap:15px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:32px;
  background:none;
  border:none;
  cursor:pointer;
  color:#fff;
}

/* MOBILE */
@media (max-width:1200px){

  .hamburger{
      display:block;
  }

  .nav{
      position:relative;
  }

  .nav-links{
      display:none;
      flex-direction:column;
      position:absolute;
      top:100%;
      right:0;
      width:250px;
      background:#F1D45C;
      padding:20px;
      box-shadow:0 8px 20px rgba(0,0,0,0.15);
      z-index:9999;
      gap:15px;
  }

  .nav-links.active{
      display:flex;
  }
}