/* CSS Document */

body{
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #030303;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
}

/* NAVIGATION BAR */
.navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 1rem;
	background: white;
	font-family: 'Poppins', sans-serif;
	box-shadow: 0px 25px 15px rgba(0, 0, 0, 0.25);
	position: relative;
	z-index: 100;
}
.nav-links{
	display: flex;
	gap: 1rem;
}
.navbar .logo{
	width: 250px;
}
.navbar ul{
	list-style: none;
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
	position: relative;
}
.navbar a{
	position: relative;
	text-decoration: none;
	color: black;
	font-weight: 400;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	text-align: center;
	min-width: 110px;
	z-index:0;
}
.navbar .order-now{
	font-weight: 700;
}
.hamburger{
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}
.hamburger span{
	display: black;
	width: 25px;
	height: 3px;
	background-color: black;
	border-radius: 2px;
}
.mobile-nav{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: white;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	z-index: 999;
	overflow: hidden;
	max-height: 0;
	border-radius: 0 0 50px 50px;
	box-shadow: 0 25px 15px rgba(0, 0, 0, 0.25);
	transition: max-height 0.3s ease-in-out;
}
.mobile-nav ul{
	list-style: none;
	padding: 20px 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}
.mobile-nav a{
	text-decoration: none;
	color: black;
	font-weight: 500;
}
.mobile-nav.show{
	display: block;
	max-height: 500px;
}

/* BANNER PAGES */
.banner{
	position: relative;
	background: url("../images/Home Banner.jpg") no-repeat center/cover;
	height: 450px;
	width: 100%;
	border-radius: 0 0 50px 50px;
	box-shadow: 0 25px 15px rgba(0, 0, 0, 0.25);
	transform: translateY(-100px);
	animation: slideDown 1s ease-out forwards;
	opacity: 0;
	animation-delay: 0.3s;
}
.banner-overlay{
	position: absolute;
	width: 100%;
	height: 450px;
	border-radius: 0 0 50px 50px;
	background: linear-gradient(to right, rgba(0, 0.2, 0.5, 0.8), rgba(0, 0, 0, 0));
}
.banner-text{
	position: absolute;
	left: 100px;
	top: 5%;
	opacity: 0;
	transform: translateX(-50px);
	animation: slideFadeLeft 1s ease-out forwards;
	animation-delay: 1s;
	text-align: left;
	color: white;
}
.banner-text h2{
	font-size: 100px;
	font-weight: 700;
	margin-top: 0;
}
.banner-text p{
	font-size: 40px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 0px;
}

/* HOME PAGE */
.promo-section{
	width: 100%;
	overflow: hidden;
	margin: 60px auto;
	text-align: center;
	padding: 40px 0;
}
.promo-wrapper{
	overflow: hidden;
	width: 100%;
	display: flex;
	justify-content: center;
}
.promo-section h2{
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 20px;
}
.promo-container{
	display: flex;
	align-items: center;
	transition: transform 0.6s ease-in-out;
	will-change: transform;
}
.promo-slide{
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
	padding: 10px;
	box-sizing: border-box;
	transform: scale(0.8);
	opacity: 0;
	transition: all 0.6s ease-out;
}
.promo-slide img{
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
	max-width: 500px;
	margin: 0 auto;
	display: block;
}
.features{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	gap: 60px;
	margin-bottom: 60px;
}
.feature{
	width: 80%;
	height: 400px;
	border-radius: 50px;
	background-size: cover;
	background-position: center;
	position: relative;
	box-shadow: 0px 25px 15px rgba(0, 0, 0, 0.25);
	transform: scale(0.8);
	opacity: 0;
	transition: all 0.6s ease-out;
}
.feature-1{background-image: url("../images/logo (2).png");}
.feature-2{background-image: url("../images/feature2.jpg");}
.feature-3{background-image: url("../images/feature3.jpg");}
.feature h2{
	font-size: 100px;
	font-weight: 600;
	color: white;
	margin-top: 0;
}
.features p{
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 9%;
	font-family: 'Poppins', sans-serif;
}
.feature-overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
}

/* ABOUT US PAGE */
.about-banner{
	position: relative;
	height: 450px;
	transform: translateY(-100px);
	animation: slideDown 1s ease-out forwards;
	opacity: 0;
	animation-delay: 0.3s;
} 
.banner-logo{
	position: right;
	padding-left: 480px;
	padding-top: 140px;
	width: 800px;
}
.about-main{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 20px;
	background-color: #fdfdfd;
}
.about-main section{
	width: 80%;
	height: auto;
	border: 4px solid #030303;
	border-radius: 50px;
	background-size: cover;
	background-position: center;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: relative;
	box-shadow: 0px 25px 15px rgba(0, 0, 0, 0.25);
	margin-bottom: 70px;
}
.about-section h3{
	font-size: 24px;
	margin-bottom: 15px;
	color: #984B00;
}
.about-section p{
	font-size: 16px;
	color: #030303;
	padding-top: 10px;
	padding-right: 150px;
	padding-bottom: 30px;
	padding-left: 150px;
	margin: 0;
	line-height: 1.6;
}
.contents-section{
	background-color: #ffffff;
	border: 4px solid #030303;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	padding: 30px;
	margin: 20px 0;
	width: 100%;
	max-width: 900px;
	text-align: center;
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.5s ease-out;
}
.contents-section.visible{
	opacity: 1;
	transform: scale(1);
}
.contents-section h3{
	font-size: 22px;
	color: #984B00;
}
.content-links{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding-bottom: 30px;
	text-decoration: underline;
	color: #DF0023;
}
.content-links a{
	color: #DF0023;
	text-decoration: none;
	font-weight: bold;
	position: relative;
	transition: color 0.3 ease;
	flex-direction: column;
}
.content-links a:hover{
	color: #a8001a;
}
.contents-links a:hover::after{
	width: 100%;
}
.why-item h4{
	color: #DF0023;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 10px;
}
.partner-logos{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
	padding-top: 10px;
	padding-right: 150px;
	padding-bottom: 30px;
	padding-left: 150px;
}
.partner-logos .main-partner{
	width: 400px;
	height: auto;
	object-fit: contain;
}
.sub-partners{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
	padding-top: 10px;
}
.sub-partners img{
	width: 100px;
	height: auto;
	object-fit: contain;
}

/* MENU PAGE */
.menu-banner{
	position: relative;
	background: url("../images/feature2.jpg") no-repeat center/cover;
	height: 450px;
	width: 100%;
	border-radius: 0 0 50px 50px;
	box-shadow: 0 25px 15px rgba(0, 0, 0, 0.25);
	transform: translateY(-100px);
	animation: slideDown 1s ease-out forwards;
	opacity: 0;
	animation-delay: 0.3s;
}
.menu-main{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 20px;
	background-color: #fdfdfd;
}
.menu-main section{
	width: 80%;
	height: auto;
	border: 4px solid #030303;
	border-radius: 50px;
	background-size: cover;
	background-position: center;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: relative;
	box-shadow: 0px 25px 15px rgba(0, 0, 0, 0.25);
	margin-bottom: 70px;
}
.menu-section h3{
	font-size: 24px;
	margin-bottom: 15px;
	color: #984B00;
}
.menu-section p{
	font-size: 16px;
	color: #030303;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
	margin: 0;
	line-height: 1.6;
}
.menu-content-links{
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}
.menu-content-links a:hover{
	text-decoration: underline
}
.category-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #DF0023;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none; /* hidden by default */
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
}

.category-button.show {
  display: block;
}

/* Category Panel */
.category-panel {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  padding: 20px;
  text-align: center;
  transition: bottom 0.4s ease-in-out;
  z-index: 1001;
}

.category-panel.show {
  bottom: 0;
}

/* Panel header */
.panel-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}

.panel-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #DF0023;
}

.close-btn {
  position: absolute;
  left: 20px;
  top: 0;
  font-size: 22px;
  font-weight: bold;
  background: none;
  border: none;
  color: #DF0023;
  cursor: pointer;
}

/* Inside panel (same as Contents of Menu) */
.category-panel .menu-content-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.category-panel .content-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-panel .content-links a {
  color: #DF0023;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}

.category-panel .content-links a:hover {
  color: black;
}

.menu-drinks{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	justify-items: center;
}
.menu-drinks .section-drink{
	text-align: center;
}
.section-drink{
	text-align: center;
	transition: transform 0.3s ease;
	border-radius: 10px;
}
.section-drink img{
	width: 100%;
	max-width: 200px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-drink:hover {
	transform: scale(1.7);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	z-index: 2;
	position: relative;
	background-color: #FFFFFF;
	border: 4px solid #DF0023;
	border-radius: 12px;
}
.section-drink p{
	font-weight: bold;
	color: #333;
}
.menu-section{
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.5s ease-out;
}
.menu-section.visible{
	opacity: 1;
	transform: scale(1);
}

/* FRANCHISING PAGE */
.franchising-banner{
	position: relative;
	background: url("../images/feature3.jpg") no-repeat center/cover;
	height: 450px;
	width: 100%;
	border-radius: 0 0 50px 50px;
	box-shadow: 0 25px 15px rgba(0, 0, 0, 0.25);
	transform: translateY(-100px);
	animation: slideDown 1s ease-out forwards;
	opacity: 0;
	animation-delay: 0.3s;
}
.franchising-main{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 20px;
	background-color: #fdfdfd;
}
.franchising-main section{
	width: 80%;
	height: auto;
	border: 4px solid #030303;
	border-radius: 50px;
	background-size: cover;
	background-position: center;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: relative;
	box-shadow: 0px 25px 15px rgba(0, 0, 0, 0.25);
	margin-bottom: 70px;
}
.franchising-section h3{
	font-size: 24px;
	margin-bottom: 15px;
	color: #984B00;
}
.franchising-section p{
	font-size: 16px;
	color: #030303;
	padding-top: 10px;
	padding-right: 150px;
	padding-bottom: 30px;
	padding-left: 150px;
	margin: 0;
	line-height: 1.6;
}
.franchising-section{
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.5s ease-out;
}
.franchising-section.visible{
	opacity: 1;
	transform: scale(1);
}
.step-item h4{
	color: #DF0023;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 10px;
}
.packages-item h4{
	color: #DF0023;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 10px;
}
.packages-item p{
	margin-bottom: 0px;
}

/* CONTACT US PAGE */
.contact-banner{
	position: relative;
	background: url("../images/feature3.jpg") no-repeat center/cover;
	height: 450px;
	width: 100%;
	border-radius: 0 0 50px 50px;
	box-shadow: 0 25px 15px rgba(0, 0, 0, 0.25);
	transform: translateY(-100px);
	animation: slideDown 1s ease-out forwards;
	opacity: 0;
	animation-delay: 0.3s;
}
.contact-main{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 20px;
	background-color: #fdfdfd;
}
.contact-main section{
	width: 80%;
	height: auto;
	border: 4px solid #030303;
	border-radius: 50px;
	background-size: cover;
	background-position: center;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: relative;
	box-shadow: 0px 25px 15px rgba(0, 0, 0, 0.25);
	margin-bottom: 70px;
}
.contact-social-icons{
	gap: 15px;
	justidy-content: center;
	align-items: center;
	margin-top: 10px;
}
.contact-social-icons img{
	width: 40px;
	height: auto;
}

/* ORDER NOW PAGE */
.order-now-section {
  text-align: center;
  padding: 100px 20px;
  background-color: #fff;
}
.order-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.delivery-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.delivery-link img {
  width: 150px;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
}
.delivery-link:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.order-subtext {
  font-size: 1rem;
  color: #555;
  margin-top: 20px;
}

/* FOOTER & SUBFOOTER*/
footer{
	background: white;
	padding: 20px;
	justify-content: flex-start;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 50px 50px 0 0;
	box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.15);
	font-family: 'Poppins', sans-serif;
}
.footer-content{
	display: flex;
	color: black;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	width: 80%;
	margin: auto;
}
.footer-logo{
	width: 200px
}
.footer-links{
	display: flex;
	flex-direction: column;
	text-align: left;
	font-size: 16px;
	font-weight: 400;
	color: #DF0023;
}
.footer-links a{
	text-decoration: none;
	color: #DF0023;
	margin: 10px 0;
}
.footer-contact{
	margin-top: 20px;
	text-align: left;
	max-width: 400px;
	width: 100%;
}
.footer-contact p {
	margin: 5px 0;
}
.email-link{
	color: #DF0023;
	text-decoration: underline;
	font-weight: 400;
}
.social-icons{
	display: flex;
	gap: 15px;
	justify-content: flex-start;
	align-items: center;
	margin-top: 10px
}
.social-icons a{
	display: inline-block;
}
.social-icons img{
	width: 40px;
	height: auto;
}
.subfooter{
	background: black;
	padding: 10px 150px;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}


/* MOBILE VERSION */
@media (max-width: 1024px) {
	
}
@media (max-width: 768px) {
	.navbar{
	    justify-content: space-between;
	    padding-left: 0;
	    padding-right: 1rem;
	}
	.logo-link{
	    margin-left: 0;
	}
	.navbar .logo{
		width: 150px;
		display: block;
	}
	.nav-links{
		display: none;
	}
	.hamburger{
		display: flex;
	}
	.banner{
		height: 300px;
	}
	.banner-overlay{
		height: 300px;
	}
	.banner-text{
		left: 25px;
	}
	.banner-text h2{
		font-size: 50px;
	}
	.banner-text p{
		font-size: 30px;
	}
	.promo-slide{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.feature h2{
	font-size: 60px;
	font-weight: 600;
	color: white;
	margin-top: 0;
	}
	.features p{
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 9%;
	font-family: 'Poppins', sans-serif;
	}
	.about-banner{
		height: 300px;
	}
	.banner-logo{
	position: right;
	padding-left: 190px;
	padding-top: 110px;
	width: 250px;
	}
	.about-section p{
	font-size: 16px;
	color: #030303;
	padding-top: 10px;
	padding-right: 50px;
	padding-bottom: 30px;
	padding-left: 50px;
	margin: 0;
	line-height: 1.6;
	}
	.partner-logos .main-partner{
		width: 200px;
		object-fit: contain;
	}
	
	.partner-logos{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 20px;
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 30px;
		padding-left: 10px;
	}
	.menu-banner{
		height: 300px;
	}
	.menu-main section{
		border: 3px solid #030303;
	}
	.menu-drinks{
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.section-drink img{
		max-width: 120px;
	}
	.section-drink p{
		font-size: 14px;
	}
	.franchising-banner{
		height: 300px;
	}
	.contact-banner{
	    height: 300px;
	}
	.contact-banner p{
	    padding-top: 40px;
	}
	.franchising-section h3{
		padding-right: 50px;
	padding-left: 50px;
	}
	.franchising-section h4{
		padding-right: 50px;
	padding-left: 50px;
	}
	.franchising-section p{
	padding-right: 50px;
	padding-left: 50px;
	}
	.delivery-link img {
		width: 100px;
		max-width: 100%;
	}
	.footer-logo{
	    width: 150px
	}
	.footer-content{
		text-align: center;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.footer-links{
		text-align: center;
		align-items: center;
		justify-content: center;
	}
	.footer-links{
		margin: 8px 0;
	}
	.footer-contact{
		text-align: center;
		width: 100%;
	}
	.social-icons{
		justify-content: center;
	}
	.subfooter{
		flex-direction: column;
		text-align: center;
		gap: 5px;
	}
	.subfooter p{
		white-space: nowrap;
		font-size: 12px;
	}
}
@media (max-width: 480px) {
	
}

@media (max-width: 400px) {
	
}
@media (max-width: 390px) {
	
}
/* NAV & FOOTER LINKS EFFECTS */
/* NAV LINKS EFFECT */
.navbar a:not(.logo-link)::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 70%;
    background: white;
    border: 4px solid transparent;
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(0); /* Initially hidden */
    transition: all 0.3s ease-in-out;
    z-index: -1; /* Ensures shape is behind text */
}

/* Visited Link (Current Page) */
.navbar a.active:not(.logo-link).active::before, 
.navbar a:not(.logo-link):visited::before {
    border-color: #030303;
    transform: translate(-50%, -50%) scale(1); /* FIXED syntax */
}
.navbar a:not(.logo-link).active, 
.navbar a:not(.logo-link):visited {
    font-weight: bold;
    color: #030303;
}

/* Hover Effect */
.navbar a:not(.logo-link):hover::before {
    border-color: #DF0023;
    transform: translate(-50%, -50%) scale(1); 
}
.navbar a:not(.logo-link):hover {
    font-weight: 700;
    color: #DF0023;
}
.navbar a:active::before {
    border-color: #FFEAE0;
    transform: translate(-50%, -50%) scale(1); 
}
.navbar a:active {
    font-weight: bold;
    color: #FFEAE0;
}
@keyframes shake-light {
    0% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    100% { transform: translateX(-3px); }
}
.navbar .order-now:hover {
    transform: scale(1.2);
    animation: shake-light 0.3s infinite ease-in-out;
}

/* Intense Shake on Active */
@keyframes shake-intense {
    0% { transform: translateX(-5px); }
	25% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
    100% { transform: translateX(-5px); }
}
.navbar .order-now:active {
    transform: scale(1.4);
    animation: shake-intense 0.2s infinite ease-in-out;
}


/* FOOTER LINKS EFFECT */
.footer-links a, .email-link{
	color: #DF0023;
	text-decoration: underline;
	font-weight: 400;
	display: inline-block;
	text-align: left;
	min-width: 120px;
}
.footer-links a:hover, .email-link:hover{
	font-weight: bold;
	color: #DF0023;
	text-decoration: underline;
}
.footer-links a:visited, .email-link:visited{
	font-weight: bold;
	color: #030303;
	text-decoration: underline;
}
.footer-links a:active, .email-link:active{
	font-weight: bold;
	color: #FFEAE0;
	text-decoration: underline;
}

/* Animations */
@keyframes slideDown{
	to{
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes slideFadeLeft{
	to{
		opacity: 1;
		transform: translateX(0);
	}
}
.contents-section p{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.contents-section.visible p{
	opacity: 1;
	transition-delay: 0.6s;
}
.contents-section h3{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.contents-section.visible h3{
	opacity: 1;
	transition-delay: 0.5s;
}
.contents-section a{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.contents-section.visible a{
	opacity: 1;
	transition-delay: 0.6s;
}
.contents-section img{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.contents-section.visible img{
	opacity: 1;
	transition-delay: 0.5s;
}
.promo-slide.visible {
	transform: scale(1);
	opacity: 1;
}
.feature.visible{
	transform: scale(1);
	opacity: 1;
}
.feature h2 .feature p {
	opacity: 0;
	transition: opacity 0.5s ease;
}
.feature.visible h2 .feature.visible p{
	opacity: 1;
}

.about-section{
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.5s ease-out;
}
.about-section.visible{
	opacity: 1;
	transform: scale(1);
}
.about-section p{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.about-section.visible p{
	opacity: 1;
	transition-delay: 0.6s;
}
.about-section h3{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.about-section.visible h3{
	opacity: 1;
	transition-delay: 0.5s;
}
.about-section h4{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.about-section.visible h4{
	opacity: 1;
	transition-delay: 0.6s;
}
.about-section img{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.about-section.visible img{
	opacity: 1;
	transition-delay: 0.5s;
}
.menu-section p{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.menu-section.visible p{
	opacity: 1;
	transition-delay: 0.6s;
}
.menu-section h3{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.menu-section.visible h3{
	opacity: 1;
	transition-delay: 0.5s;
}
.menu-section img{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.menu-section.visible img{
	opacity: 1;
	transition-delay: 0.5s;
}

.franchising-section p{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.franchising-section.visible p{
	opacity: 1;
	transition-delay: 0.6s;
}
.franchising-section h3{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.franchising-section.visible h3{
	opacity: 1;
	transition-delay: 0.5s;
}
.franchising-section h4{
	opacity: 0;
	transition: opacity 0.5s ease;
}
.franchising-section.visible h4{
	opacity: 1;
	transition-delay: 0.6s;
}
/* Comment Section */
#floating-comment-btn{
position: fixed;
left: 20px;
bottom: 20px;
width: 56px;
height: 56px;
border-radius: 50%;
border: none;
font-size: 24px;
cursor: pointer;
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
z-index: 10010;
background: #fff;
}
#comment-modal{ display: none; }
#comment-modal.open{ display: block; position: fixed; inset: 0; z-index: 10000; }


.cm-modal-backdrop{
position: absolute; inset: 0; backdrop-filter: blur(6px); background: rgba(0,0,0,0.25);
}


.cm-modal-panel{
position: absolute;
left: 50%; top: 50%; transform: translate(-50%,-50%);
width: min(720px, 92%);
max-height: 85vh; overflow:auto;
background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}


.cm-close{
position: absolute; right: 12px; top: 12px; background: none; border: none; font-size:18px; cursor:pointer;
}


#cm-form label{ display:block; margin:12px 0; text-align:left; }
#cm-form input, #cm-form textarea{ width:100%; padding:8px; border-radius:6px; border:1px solid #ddd }


.cm-actions{ text-align:right; }


.stars{ display:inline-flex; gap:6px; }
.star{ background:none; border:none; font-size:20px; cursor:pointer; opacity:0.35 }
.star.active{ opacity:1; }


#cm-list{ margin-top:12px; text-align:left }
.comment-item{ padding:10px; border-radius:8px; background:#f7f7f7; margin-bottom:8px }
.comment-item .meta{ font-size:12px; color:#666 }
html{
	scroll-behavior: smooth;
}