/* =========================================================
   RESET
========================================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* =========================================================
   BODY
========================================================= */
body {
	font-family: 'Playfair Display', serif;
	background-color: #fcefe7;
	color: #e0e0e0;
	margin: 0;
  	overflow-x: hidden;
}

/* =========================================================
   INTRO SCREEN
========================================================= */
#intro {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 1s ease;
}

/* --- Intro Logo --- */
.logo {
	font-size: 80px;
	font-weight: 900;
	color: #fff;
	display: inline-flex;
	align-items: center;
	animation: fadeIn 2s ease;
}

.clicklogo {
	font-weight: 900;
	font-size: 2em;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.clicklogo:hover{
	color: #d97706;
}

/* =========================================================
   HERO SECTION
========================================================= */
#hero {
	opacity: none;
	transition: opacity 1s ease;
}

main {
	background-image: url(picture/zek.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
	padding: 0;
	position: relative;
	height: 1200px;
	width: 100%;
	overflow: hidden;
	margin: 0;
}

/* =========================================================
   HEADER (STATIC + POP-UP)
========================================================= */

/* --- Main Transparent Header --- */
.main-header {
	padding: 20px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	z-index: 10;
}

/* --- Scroll Pop-up Header --- */
#popUp {
	position: fixed;
	top: -100px;
	left: 0;
	width: 100%;
	background: rgb(31, 31, 31);
	color: #fff;
	padding: 15px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: top 0.6s ease;
	z-index: 999;
}

#popUp.active {
	top: 0;
}

/* --- Navigation Links --- */
.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	margin: 0;
	cursor: pointer;
	color: #fff;
	font-weight: 600;
	font-size: 1em;
}

.nav-links a:hover,
.nav-links a.act {
	text-decoration: underline;
	color: #d97706;
}

/* =========================================================
   CONTENT SECTIONS
========================================================= */

/* --- Menu Section Wrapper --- */
.Menumenu {
	padding: 100px 10%;
	background-color: #faeee6;
	position: relative;
	margin-top: -100px;
	z-index: 5;
}

.text-block {
	text-align: justify;
	margin-bottom: 60px;
}

/* --- Flex Section (Image + Text) --- */
.flex-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 80px;
}

.flex-section img {
	flex: 1 1 40%;
	border-radius: 10px;
}

.flex-text {
	flex: 1 1 50%;
	text-align: justify;
}

/* =========================================================
   MENU SECTION (2x2 Grid with Hover Glow)
========================================================= */
.menu-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 2rem;
	padding: 4rem 10%;
	background-color: #faeee6;
	justify-items: center;
	align-items: center;
}

/* --- Individual Menu Item Card --- */
.menu-item {
	background: #fff;
	border-radius: 10px;
	text-align: center;
	color: #333;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 90%;
	height: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-item:hover {
	transform: translateY(-5px);
	box-shadow: -10px 0 20px rgb(255, 110, 110), 10px 0 20px rgb(128, 128, 238);
}

.menu-item img {
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.menu-item h2 {
	font-size: 1.3rem;
	margin-top: 1rem;
	letter-spacing: 1px;
	color: #3b3b3b;
}

.menu-item p {
	font-size: 0.95rem;
	color: #555;
	margin: 0.5rem 0 1rem;
}

.menu-item button {
	border: 1px solid #c28b6c;
	background: transparent;
	color: #c28b6c;
	padding: 0.7rem 1.4rem;
	font-size: 0.9rem;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
	margin-bottom: 1rem;
}

.menu-item button:hover {
	background: #c28b6c;
	color: white;
	box-shadow: 0 0 15px rgb(255, 0, 0);
}

/* =========================================================
   SECTION: LOCATION (LOC)
========================================================= */
.Sec2 {
	background-image: url(pics/IMG_0875.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
	position: relative;
	height: 70vh;
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 4rem 10%;
	
}

/* --- Location Text and Button --- */
.loca h1 {
	color: white;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
	font-family: 'Montserrat', sans-serif;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 30%;
	left: 50%;
	translate: -50%;
}

.loca button {
	background-color: transparent;
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	color: white;
	border: 1px solid white;
	border-radius: 3px;
	padding: 0.7rem 1.4rem;
	margin: 0;
	position: absolute;
	bottom: 15%;
	left: 50%;
	translate: -50%;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.6);
}

.loca button:hover {
	color: #c28b6c;
	background-color: white;
	box-shadow: -10px 0 20px rgb(255, 110, 110), 10px 0 20px rgb(128, 128, 238);
}

.lastSec {
      background-color: #000;
      padding: 60px 40px;
      color: #ccc;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      align-items: start;
    }

    /* --- Footer Column --- */
    .footer-column {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* --- Column Title --- */
    .footer-column h4 {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding-bottom: 10px;
      border-bottom: 2px solid #c28b6c;
    }

    /* --- Footer Links --- */
    .footer-column a {
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: #c28b6c;
    }

    /* --- Footer Paragraph Text --- */
    .footer-column p {
      color: #ccc;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* --- Brand Logo Column --- */
    .footer-brand {
      text-align: center;
      justify-content: center;
    }

    .footer-brand .dice-icon {
      font-size: 80px;
      color: #fff;
      margin-bottom: 15px;
      animation: dice-pulse 2s infinite;
    }

    .footer-brand p {
      font-size: 12px;
      color: #999;
      font-style: italic;
    }

    /* --- Dice Pulse Animation --- */
    @keyframes dice-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }

    /* --- Footer Bottom --- */
    footer {
      background-color: #1a1a1a;
      padding: 25px 40px;
      text-align: center;
      border-top: 1px solid #333;
    }

    footer p {
      color: #999;
      font-size: 13px;
      margin: 0;
    }

    /* =====================================================
       RESPONSIVE DESIGN
    ===================================================== */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }

      .footer-column h4 {
        text-align: left;
      }

      .footer-column a,
      .footer-column p {
        justify-content: center;
      }

      .footer-brand .dice-icon {
        font-size: 60px;
      }
    }

/* =========================================================
   LINKS (Global)
========================================================= */
a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	color: #f8c471;
}

/* =========================================================
   DICE GLITCH EFFECT
========================================================= */
.dice-icon {
  /* Keep orange accent color for dice icon */
  color: #ffffff;
  font-size: 30px;
  /* Remove animation and add static glitch effect with blue and red shadows */
  position: relative;
  display: inline-block;
  text-shadow: 2px 0 0 #ff0000, -2px 0 0 #0000ff;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */
@media (max-width: 900px) {
	.menu-section {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, auto);
	}
	.menu-item {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.flex-section {
		flex-direction: column;
		text-align: center;
	}
}

/* =========================================================
   HERO SLIDER
========================================================= */
.slider {
	position: relative;
	width: 100%;
	height: 1200px;
	overflow: hidden;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- Active Slide Visible --- */
.active-slide {
	opacity: 1;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */
.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 3rem;
	padding: 10px;
	cursor: pointer;
	user-select: none;
	transition: background-color 0.3s;
	border-radius: 50%;
}

.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.4);
}

.prev {
	left: 30px;
}

.next {
	right: 30px;
}

/* --- Slide Content Text --- */
.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	background-color: transparent;
	padding: 2rem 1rem;
	z-index: 10;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-content h1 {
	font-size: 120px;
	margin-bottom: 0.5rem;
	position: relative;
	display: inline;
	top: -200px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-content p {
	position: relative;
	top: -70px;
	font-size: 50px;
	margin-bottom: 1.5rem;
}

/* --- Slider Button --- */
.slider-btn {
	font-family: 'Times New Roman', Times, serif;
	display: inline-block;
	padding: 12px 24px;
	color: white;
	background-color: rgba(0, 0, 0, 0.4);
	border: 1px solid black;
	text-decoration: none;
	font-weight: bold;
	border-radius: 2px;
	font-size: 30px;
	transition: background-color 0.3s ease;
}

.slider-btn:hover {
	background-color: #dbc6b8;
	color: white;
	border: none;
	box-shadow: -10px 0 20px rgb(255, 110, 110), 10px 0 20px rgb(128, 128, 238);
}

/* =========================================================
   CREATE ACCOUNT SECTION
========================================================= */
.nav-links {
	display: flex;
	gap: 20px;
	align-items: center;
}

/* --- Account Icon --- */
.create-icon {
	color: white;
	font-size: 1.6rem;
	cursor: pointer;
	transition: color 0.3s ease;
}

.create-icon:hover {
	color: #d97706;
}

/* --- Create Account Page --- */
.create-account {
	background-color: #faeee6;
	padding: 80px 20px;
	display: flex;
	justify-content: center;
}

/* --- Account Form Card --- */
.account-container {
	background: #fff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	max-width: 450px;
	width: 100%;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

.account-container h2 {
	margin-bottom: 30px;
	font-size: 2rem;
	color: #3b3b3b;
	letter-spacing: 1px;
}

.account-container label {
	display: block;
	text-align: left;
	margin-bottom: 5px;
	color: #555;
	font-weight: 600;
}

.account-container input {
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 10px;
	font-size: 1rem;
}

/* --- Password Field & Toggle --- */
.password-field {
	position: relative;
}

.toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 1.2rem;
	color: #888;
}

/* --- Create Account Button --- */
.account-container button {
	width: 100%;
	padding: 12px 0;
	background-color: #c28b6c;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.account-container button:hover {
	background-color: #d97706;
	box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

/* --- Responsive for Account Form --- */
@media (max-width: 500px) {
	.account-container {
		padding: 30px 20px;
	}
}

/* =========================================================
   INTRO LOGO GLITCH ANIMATION
========================================================= */
#intro-logo {
	font-size: 80px;
	font-weight: 900;
	font-family: 'Montserrat', sans-serif;
	color: white;
	position: relative;
	display: inline-flex;
	align-items: center;
	animation: textShadowGlitch 1s infinite;
	gap: 10px;
}

/* --- Dice Icon in Intro --- */
#intro-logo .intro-dice i {
	animation: textShadowGlitch 1s infinite;
	font-size: 80px;
	color: white;
}

/* --- Text Shadow Glitch Animation --- */
@keyframes textShadowGlitch {
	0% { text-shadow: 2px 0 red, -2px 0 blue; }
	25% { text-shadow: -2px 2px red, 2px -2px blue; }
	50% { text-shadow: 2px -2px red, -2px 2px blue; }
	75% { text-shadow: -1px 1px red, 1px -1px blue; }
	100% { text-shadow: 2px 0 red, -2px 0 blue; }
}

.forgot
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  background-color: rgb(31, 31, 31);;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid #e2d6c5;
}

