
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0d0d0d;
    color: #ff4c4c;
}
header {
    text-align: center;
    padding: 2rem;
}
.contact {
    padding: 10px 40px;
    background: #FF4C4C;
    border-radius: 5px;
    text-decoration: none;
    font-size: 30px;
    font-weight: 800;
    color: white;
}
.logo {
    width: 325px;
    height: 400px;
    margin-bottom: -2rem;
}
.menu {
    text-align: center;
    margin-bottom: 1rem;
}
.menu a {
    color: #ff4c4c;
    text-decoration: underline;
    cursor: pointer;
}
.controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem;
}
.controls input {
    padding: 0.5rem;
    width: 200px;
    border-radius: 5px;
    border: none;
    background: #222;
    border: 1px solid #ff4c4c;
    color: #ff4c4c;
}
.controls button {
    padding: 0.5rem 1rem;
    background-color: #222;
    color: #ff4c4c;
    border: 1px solid #ff4c4c;
    cursor: pointer;
    border-radius: 5px;
}
.vendor-section-title {
    text-align: center;
    font-size: 1.5rem;
}
.vendor-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    max-width: calc(500px * 3 + 2rem);
    margin: 0 auto;    /* center the grid */
    gap: 1rem;
    padding: 5rem;
}
.vendor-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.2s;
    /*max-width: 330px;*/
	display: flex;
}
.vendor-card:hover {
    transform: scale(1.02);
    border-color: #ff4c4c;
}

.vendor-card h2>a{
	text-decoration: none;
	color: #FF4C4C;
}
.featured {
    background: linear-gradient(145deg, #330000, #1a1a1a);
}
.vacation {
    opacity: 0.5;
    background-color: #444;
}
.thumb {
	margin-right: 20px;
	justify-content: center;
	display: flex;
	align-items: center;
}
.thumb img{
	max-height: 150px;
	border-radius: 50%;
}
footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    bottom: 0;

}
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
}
.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #333;
    width: 90%;
    max-width: 500px;
    color: #ff4c4c;
    border-radius: 10px;
}
.modal-content input, .modal-content button {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    background: #111;
    color: #ff4c4c;
    border: 1px solid #444;
    border-radius: 5px;
}
.close {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
}
#tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}
#tags span {
    background: #222;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ff4c4c;
}

.intro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
}

#introText {
    font-size: clamp(1.2rem, 5vw, 2rem);
    color: black;
    font-family: monospace;
    white-space: normal;       /* ✅ allow wrapping */
    overflow-wrap: break-word; /* ✅ break long words */
    text-align: center;
    border-right: none;        /* optional: hide blinking cursor on wrap */
    max-width: 90vw;
    line-height: 2.5rem;
}

#introText .highlight {
    color: #ff4c4c;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.vendor-grid.fade-in {
    animation: fadeIn 1s ease-out forwards;
}


.vendor-card {
    opacity: 1;
    transform: scale(1);
}
.vendor-card.bounce-in {

    opacity: 0;
    animation: bounceIn 0.6s ease both;
}

@keyframes laserDraw {
    from {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transform: scaleY(0.8);
    }
    to {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: scaleY(1);
    }
}

header {
    opacity: 0;
    animation: laserDraw 5s ease-out 3.2s forwards;
}

@keyframes laserDraw {
    0% {
        opacity: 0;
        transform: scaleY(0.8);
        filter: drop-shadow(0 0 0px #ff4c4c);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.05);
        filter: drop-shadow(0 0 10px #ff4c4c);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
        /*filter: drop-shadow(0 0 0.5px #ff4c4c);*/
    }
}

header {
    text-align: center;
    padding: 2rem;
}

header img,
header h1,
header p {
    opacity: 0;
    transform: scaleY(0.8);
    animation: laserDraw 1.2s ease-out forwards;
}

header img {
    animation-delay: 2.1s;
}

header h1 {
    animation-delay: 2.6s;
}

header p {
    animation-delay: 3.2s;
}

@keyframes cleanLaserDraw {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 0;
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

header img,
header h1,
header p {
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation: cleanLaserDraw 1.5s ease-out forwards;
}

header img {
    animation-delay: 2s;
}

header h1 {
    animation-delay: 2.6s;
}

header p {
    animation-delay: 3.2s;
}

.vendor-inline-title {
    width: 100%;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff4c4c;
    margin: 2rem 0 1rem;
    border-bottom: 1px solid #ff4c4c;
    padding-bottom: 0.3rem;
}

/* === Group Chat Vertical Button & Panel === */
.group-chat-btn {
  position: fixed;
  top: 20%;
  right: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background-color: #FF4C4C;
  color: black;
  border: none;
  padding: 12px 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 0 6px 6px 0;
  z-index: 10001;
}

.apply-btn {
  position: fixed;
  top: 35%;
  right: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background-color: black;
  color: #FF4C4C; /* #FF4C4C*/
  border: solid 1px #FF4C4C;
  padding: 12px 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 0 6px 6px 0;
  z-index: 10001;
	text-decoration: none;
	
}

.apply-btn:hover {
  background-color: #FF4C4C;
  color: black;
  border: none;
}

.group-chat-btn:hover {
  background-color: black;
  color: #FF4C4C;
  border: 1px solid #FF4C4C;
}

/* Hidden panel (starts off-screen) */
.group-chat-panel {
  position: fixed;
  top: 20%;
  right: -260px; /* keep off screen initially */
  width: 250px;
  height: 150px;
  background: white;
  border: 2px solid #FF4C4C;
  border-radius: 8px 0 0 8px;
  padding: 20px;
  box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 10000;
}

.group-chat-panel.active {
  right: 60px; /* slides into view, leaving space for button */
  opacity: 1;
}

.group-chat-panel h2 {
  font-size: 24px;
  color: #333;
  margin: 0;
  text-align: center;
}

.apply-panel {
  position: fixed;
  top: 35%;
  right: -260px; /* keep off screen initially */
  width: 250px;
  height: 150px;
  background: white;
  border: 2px solid #FF4C4C;
  border-radius: 8px 0 0 8px;
  padding: 20px;
  box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 10000;
}

.apply-panel.active {
  right: 60px; /* slides into view, leaving space for button */
  opacity: 1;
}

.apply-panel h2 {
  font-size: 24px;
  color: #333;
  margin: 0;
  text-align: center;
}

.close-panel {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #FF4C4C;
  font-weight: bold;
}

.close-panel:hover {
  color: black;
}

.close-apply-panel {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #FF4C4C;
  font-weight: bold;
}

.close-apply-panel:hover {
  color: black;
}

/* Responsive */
@media (max-width: 600px) {
  .group-chat-panel {
    width: 200px;
    height: 120px;
    padding: 15px;
  }
  .group-chat-panel h2 {
    font-size: 20px;
  }
  .group-chat-btn {
    font-size: 14px;
    padding: 10px 6px;
  }
	.apply-panel {
    width: 200px;
    height: 120px;
    padding: 15px;
  }
  .apply-panel h2 {
    font-size: 20px;
  }
  .apply-btn {
    font-size: 14px;
    padding: 10px 6px;
  }
	.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 5px;
	}
	.thumb {
		margin-right: 15px;
	}
	.thumb img{
		max-height: 100px;
	}
	
}