/* === GENEL === */
* {margin: 0; padding: 0; box-sizing: border-box;}
body {font-family: Arial, sans-serif; background: #f9f9f9; color: #333;}

/* === LOGO === */

.logo a {

    text-decoration: none;
    color: #fff;
    font-family: ravie;
    font-weight: bold;
    font-size: larger;
}

/* === NAVBAR === */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #222;
  color: #fff;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  font-size: 1.2rem;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: #ff9800;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
@media(max-width: 768px){
  nav ul {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    padding: 10px;
  }
  nav ul.show {display: flex;}
  .menu-toggle {display: block;}
}

/* === SLIDER === */
.slider {
  position: relative;
  max-width: 1000px;
  height: 400px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active {opacity: 1;}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1.1rem;
}
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
}
.prev {left: 15px;}
.next {right: 15px;}
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}
.dot.active {background: #fff;}

.caption {
  position: absolute;
  bottom: 60px;
  left: 80px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1.1rem;
}

/* === SEARCH === */
.search-box {
  max-width: 1000px;
  margin: 20px auto;
  text-align: center;
}
.search-box input {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* === CARDS === */
.cards-container {
  max-width: 1000px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 45px;
}
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-content {
  padding: 15px;
}
.card-content h3 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bolder;
  color: red;
}
.card-content p {
  text-align: left;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgb(10, 10, 10);
  margin-bottom: 15px;
  overflow-wrap: break-word ;
  word-wrap: break-word;
  hyphens: auto;

}
.card-content a {
  display: inline-block;
  text-decoration: none;
  background: #ff9800;
  color: rgb(7, 7, 7);
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s;
}
.card-content a:hover {
  background: #e68900;
  color: red;
  font-weight: bold;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* === CONTACT PAGE === */
.contact-container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form label {
  font-weight: bold;
}
form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}
form button {
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
form button:hover {
  background: #e68900;
}
.contact-info {
  margin-top: 30px;
}
.contact-info h3 {
  margin-bottom: 10px;
  color: #222;
}
.contact-info p {
  margin-bottom: 5px;
  color: #555;
}

/* === FOOTER === */
footer {
  margin-top: 40px;
  padding: 20px;
  background: #222;
  color: #fff;
  text-align: center;
}

/*=== DETAIL PAGE== */

.detail-container {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  overflow-wrap: break-word ;
  word-wrap: break-word;
  hyphens: auto;
}

.detail-container h1 {

  margin-bottom: 20px;
  color: #222;
  text-align: center;

}

.detail-container img {

  width: 100%;
  height: 350px;
  border-radius: 10px;
  margin-bottom: 20px;
  
}

.detail-container p {

  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
  
}

.back-btn {

  display: inline-block;
  text-decoration: none;
  background: #ff9800;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s;

}

.back-btn:hover {

  background: #e68900;
}

.kategori{
  display: inline-block;
  margin: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  padding: 5px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5); 
  background-color: #555;
  width: 90%;
  text-align: center;
}
.kategori h3{
    padding: 5px;
    margin-left: 15px;
    color: aliceblue;
}
   
.footer-text{

  font-size: larger;
  font-weight: bolder;
  font-family: ravie;
  text-decoration: none;
  color: #f9f9f9;
}

.up{

position: fixed;
bottom: 20px;
right: 20px;
z-index: 99;
min-width: 70px;
height: 701px;
border: none;
outline: none;
background-color: #e68900;
color: #ccc;
font-size: 14px;
font-weight: bold;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 4px 12px (0, 0, 0, 0.4);
display: none;
transition: all 0.3 ease;

}

.up:hover{


  background-color: aqua;
  transform: scale(1.1);
}

#topbtn{

    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: 50px;
    height: 50px;
    background-color: #069bff;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3 ease;
} 

#topbtn:hover{

  background-color: #2988b9;
  transform: scale(1.1);
}

.video-container{

  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin: 1.5rem 0;
}

.video-container iframe, 
.video-container video {


  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
 
.arabi{
  
  text-align:center;
  font-family: 'KuranFont', 'KFGQPC Uthman Taha Naskh', 'KFGQPC_Naskh', 'Traditional Arabic', 'Lateef', 'Droid Arabic Naskh';
  text-shadow:1px 1px 2px #eee;
  font-size: 64px;
  line-height:2;
  width:100%;
  margin-bottom:10px

}
.meal{
font-size:25px;
margin:3px;
list-style:none;
text-align:center;
border: 1px dashed #fff;
padding:2px;
line-height:20px

}

.manasi 
    {
    color:#003aa5;
    margin-bottom:10px;
    text-align:center;
    font-size:22px
  }
ul{

  text-decoration: none;
  list-style-type: none;
}

h2{

  color: red;
}