@import url('https://fonts.googleapis.com/css2?family=Finger+Paint&display=swap');
.header1 {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #2a2a2a;
    border-radius: 25px;
    padding: 20px 40px;
    margin: 15px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 48px;
    color: #c1c412;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.header1 h2 {
    font-family: 'Finger Paint', cursive;
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
}

.nav-list a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #d99a4e;
    text-decoration: underline;
    background-color: #810000;
}

.nav-list a:active {
    color: #d99a4e;
} 

.body1{
   background-image: url(../images/back.jpg);
   background-repeat: no-repeat;
   background-size: cover;
}
.main1{
    color:rgb(187, 236, 7);
    font-family: "handwritten", cursive;
    padding-left: 20px;
    margin: 120px;
} 
.main1
.main1 p{  
    font-family: 'handwritten', cursive;
    font-size: 56px;
    
} 
.main3{
    color:white;
    font-family: "handwritten", cursive;
    text-align: center;
    padding-right: 20px;
    background-color: #2a2a2a;
}
.body3,.body4,.body5,.body6,.body7,.body8,.body9{
    background-color: rgb(73, 51, 51);
}
.food-container{
    width:90%;
    margin:auto;
    padding:20px;
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    background:#f5f5f5;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.card{
    width:250px;
    padding:20px;
    background:white;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.card img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
}

.box h2{
    text-shadow:1px 1px 3px rgba(0,0,0,0.3);
}

.card p{
    text-align:center;
    text-shadow:1px 1px 2px rgba(0,0,0,0.2);
}

.card button{
    padding:10px 20px;
    border:none;
    background:#ff9900;
    color:white;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.card button:hover{
    background:#111;
    transform:scale(1.05);
}
.about-main{
    width:90%;
    margin:auto;
    padding:40px 0;
    font-family:'Poppins', sans-serif;
}

.about-hero{
    text-align:center;
    padding:50px 20px;
}

.section-tag{
    color:#ff9900;
    font-weight:600;
}

.about-hero h1{
    font-size:40px;
    margin:15px 0;
    text-shadow:1px 2px 4px rgba(0,0,0,0.25);
}

.about-hero p{
    color:#cea4a4;
    line-height:1.8;
    text-shadow:1px 1px 2px rgba(0,0,0,0.2);
}


.about-content{
    display:flex;
    gap:40px;
    align-items:center;
    margin-top:40px;
}

.about-image img{
    width:350px;
    height:350px;
    object-fit:cover;
    border-radius:50%;
}


.about-text{
    flex:1;
}

.about-text h2{
    font-size:30px;
    margin:15px 0;
    text-shadow:1px 2px 3px rgba(0,0,0,0.25);
}

.about-text p{
    color:#dacbcb;
    line-height:1.8;
}


.about-stats{
    display:flex;
    gap:30px;
    margin-top:25px;
}

.stat-box{
    text-align:center;
}

.stat-box h3{
    font-size:30px;
    color:#bb801a;
    text-shadow:1px 1px 3px rgba(0,0,0,0.25);
}

.stat-box p{
    color:#ece4e4;
}


.about-values{
    display:flex;
    gap:40px;
    margin-top:50px;
    text-align:center;
}

.value-card{
    flex:1;
}

.value-card h3{
    color:#ff9900;
    margin-bottom:10px;
    text-shadow:1px 1px 3px rgba(0,0,0,0.2);
}

.value-card p{
    color:#beb9b9;
    line-height:1.7;
}


@media(max-width:768px){

.about-content{
    flex-direction:column;
}

.about-image img{
    width:250px;
    height:250px;
}

.about-stats,
.about-values{
    flex-direction:column;
}

.about-hero h1{
    font-size:30px;
}

}
.main4{
    width:80%;
    margin:50px auto;
    text-align:center;
    font-family:'Poppins', sans-serif;
}

.main4 h1{
    font-size:35px;
    margin-bottom:15px;
    text-shadow:1px 2px 4px rgba(0,0,0,0.25);
}

.main4 p{
    color:#bdabab;
    margin-bottom:30px;
    line-height:1.7;
    text-shadow:1px 1px 2px rgba(0,0,0,0.2);
}


dl{
    text-align:left;
    width:70%;
    margin:auto;
}

dt{
    font-size:20px;
    font-weight:600;
    color:#ff9900;
    margin-top:20px;
    text-shadow:1px 1px 3px rgba(0,0,0,0.2);
}

dd{
    margin-left:20px;
    color:#c0b6b6;
    font-size:17px;
    margin-top:5px;
}
footer{
    
    background:#1a1a1a;
    color:#fff;
    text-align:center;
    padding:20px 0;
    margin-top:50px;
    justify-content:center;
    justify-items:bottom;
}
.main5{
    width:90%;
    margin:50px auto;
    text-align:center;
    font-family:'Poppins', sans-serif;
}

.main5 h1{
    font-size:40px;
    text-shadow:1px 2px 4px rgba(0,0,0,0.25);
}

.main5 > p{
    color:#555;
    margin:15px 0 40px;
}


.cont{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}


.mus{
    width:320px;
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
    transition:0.3s;
}


.mus:hover{
    transform:translateY(-10px);
}


.mus img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
}


.mus h2{
    margin:20px 0;
    font-size:24px;
    text-shadow:1px 2px 3px rgba(0,0,0,0.25);
}


.mus p{
    color:#555;
    line-height:1.7;
    text-align:center;
}


.mus b{
    color:#ff9900;
}


@media(max-width:768px){

.cont{
    flex-direction:column;
    align-items:center;
}

}
.main6{
    width:80%;
    margin:50px auto;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
    font-family:'Poppins', sans-serif;
}


.main6 h2{
    text-align:center;
    color:#ff9900;
    margin-bottom:15px;
    text-shadow:1px 2px 3px rgba(0,0,0,0.25);
}


.main6 p{
    color:#555;
    line-height:1.8;
    margin-bottom:35px;
    text-align:center;
    text-shadow:1px 1px 2px rgba(0,0,0,0.15);
}
.main7{
    width:80%;
    margin:50px auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
    font-family:'Poppins', sans-serif;
    text-align:center;
}


.main7 p{
    color:#555;
    font-size:18px;
    margin-bottom:25px;
    text-shadow:1px 1px 2px rgba(0,0,0,0.2);
}


.main7 iframe{
    width:100%;
    height:350px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.main8{
    width:80%;
    margin:50px auto;
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
    font-family:'Poppins', sans-serif;
    text-align:center;
}


.main8 h2{
    margin-bottom:25px;
    font-size:32px;
    text-shadow:1px 2px 4px rgba(0,0,0,0.25);
}


.main8 table{
    width:100%;
    border-collapse:collapse;
}


.main8 th{
    background:#ff9900;
    color:white;
    padding:15px;
    text-shadow:1px 1px 2px rgba(0,0,0,0.2);
}


.main8 td{
    padding:12px;
    color:#555;
}


.main8 th,
.main8 td{
    border:1px solid #ddd;
}


.main8 tr:nth-child(even){
    background:#f5f5f5;
}


form:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

h2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #d4af37;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 90%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #2a2a2a;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
select:hover,
textarea:hover {
  border-color: #d4af37;
  background: #333;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: #333;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.radio-group label, .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: normal;
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.radio-group label:hover, .checkbox-group label:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: #d4af37;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

button {
  width: 90%;
  padding: 12px;
  background: #d4af37;
  color: #111;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #b8942e;
  transform: scale(1.02);
}

button:active {
  transform: scale(0.98);
} 
video{
    width: 400px;
    height: 300px;
    
}
