@font-face {
    font-family: 'avini'; 
    src: url('font/font.ttf') format('truetype');
    font-weight: normal; 
    font-style: normal; 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
 
    font-family: 'avini', sans-serif;
    background: radial-gradient(circle at top, #1e3c72, #2a5298, #000c40);
    background-size: cover;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background-color: rgba(224, 224, 224, 0.781);
    
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
   height: 90px;
    width: 400px;
    margin: 0 auto;
    margin-top: 10px;
    color: #333333;
    padding: 15px 0;
    text-align: center;
    box-shadow: 10px 10px rgb(83, 83, 83);
}

header div h1 {
    font-family: 'avini', sans-serif;
   font-size: 2em;
}

main {
   
    flex: 1;
    padding: 20px 0;
}

.content {
  
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    gap: 20px;
    background: #e9e9e993; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.329);
}


.province-info {
    
    text-align: right;
    width: 60%;
    padding: 20px;
    background-color: #C0C0C0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.province-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
   text-align: center;
   font-family: 'avini', sans-serif; 
}

.province-info p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: 'avini', sans-serif; 
}

.province-info h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

.province-info ul {
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
}

.province-info ul li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 5px;
}

.province-image-container {
    width: 60%;
   margin-right: 70px;
  
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
    display: inline-block;
}

.province-image {
    margin-top: 20px;
    width: 32%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(53, 47, 47);
    cursor: pointer;
    margin-left: 150px; 

}

@font-face {
    font-family: 'CinemaFont';
    src: url('fonts/Cinema Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

header {
    font-family: 'CinemaFont', sans-serif;
 
}

.custom-font {
    font-family: 'avini', sans-serif; 
    font-size: 2rem; 
    line-height: 1.6;
}

.hotel-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.hotel-table th,
.hotel-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hotel-table th {
    background-color: #f3f3f3;
    font-size: 1.2rem;
}

.hotel-table td {
    font-size: 1.1rem;
}

.hotel-table .hotel-image {
    width: 100px;
}

@font-face {
    font-family: 'STFont';
    src: url('fonts/STITRBD.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.star-gold {
    color: gold;
}

.star-yellow {
    color: #ffc107;
}




@font-face {
    font-family: 'CinemaFont';
    src: url('fonts/Cinema Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

header h1 {
    font-family: 'CinemaFont', sans-serif;
    font-size: 2.5rem;
}



.popup-container {
    direction: rtl;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    border-radius: 15px;
    max-width: 80%;
    max-height: 80%;
    margin: 10% auto; 
    padding: 20px;
    overflow: auto; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.popup-content .btn-yellow {
    display: inline-block;


    margin-top: -20px;
}





.no-scroll {
    overflow: hidden;
}


.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
   
    
}

.popup-content {
    background: #ffffffe8;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
}

.popup-content h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-group {
    font-family: 'avini', sans-serif;
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: 'avini', sans-serif;
}

.form-group input,
.form-group select {
    font-family: 'avini', sans-serif;
    font-size: 17px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.makantaf{
    display: inline-block;
    padding-left: 20px;
}
.makan{
   
    display: inline-block;
    padding-left: 90px;
    padding-right: 20px;
}




button {
    --color: #560bad;
    font-family: inherit;
    display: inline-block;
    width: 6em;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
   
    font-size: 20px;
    z-index: 1;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 6px;
    position: relative;
  }
  
  button::before {
    position: absolute;
    content: "";
    background: var(--color);
    width: 170px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
  }
  
  button:hover {
    color: white;
  }
  
  button:before {
    top: 100%;
    left: 100%;
    transition: .3s all;
  }
  
  button:hover::before {
    top: -30px;
    left: -30px;
  }
  @media only screen and (min-width: 1280px) {
.province-image{
    width: 28%;
}
.province-image-container{
    width: 70%;
    padding: 30px;
}
  }
 

@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        align-items: center;
    }
    
    .province-info,
    .province-image-container {
        width: 90% !important;
        margin-right: 0 !important;
    }
    
    .province-image {
        width: 48% !important;
        margin-left: 0 !important;
    }
    
    .makan,
    .makantaf {
        display: block !important;
        padding: 10px 0 !important;
        width: 100% !important;
    }
    
    .form-row {
        flex-wrap: wrap;
    }
    
    .form-group {
        flex: 0 0 100% !important;
    }
}

@media (max-width: 768px) {
    header {
        width: 90% !important;
        height: auto !important;
        padding: 15px !important;
    }
    
    .hotel-table {
        font-size: 0.8rem;
    }
    
    .hotel-table th,
    .hotel-table td {
        padding: 8px !important;
    }
    
    .popup-content {
        width: 95% !important;
        padding: 15px !important;
    }
}
@media (max-width: 480px) {
    header div h1 {
        font-size: 1.5rem !important;
    }
    
    .province-image {
        width: 100% !important;
        margin: 10px 0 !important;
    }
    
    .custom-font {
        font-size: 1.2rem !important;
    }
    
    .province-info h2 {
        font-size: 1.3rem !important;
    }
    
    .province-info p {
        font-size: 1rem !important;
    }
    
    button {
        font-size: 14px !important;
        width: auto !important;
        padding: 0 10px !important;
    }
    
    .hotel-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 360px) {
    header div h1 {
        font-size: 1.3rem !important;
    }
    
    .popup-content h2 {
        font-size: 1.2rem !important;
    }
    
    .form-group input,
    .form-group select {
        font-size: 12px !important;
    }
}