/* GLOBAL STYLES */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.7;
}

/* NAVIGATION */
nav {
    background: #1e3a2b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #e67e22;
    font-size: 1.6rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #e67e22;
}

/* CONTAINER & HEADINGS */
.container { width: 80%; margin: 60px auto; }

h2 { 
    font-size: 2.2rem; 
    color: #1e3a2b; 
    margin-bottom: 30px; 
    text-align: center;
}

/* GRID + CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 25px; }
.card-body h3 { margin-bottom: 10px; color: #1e3a2b; }

/* TABLE */
.table-container { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; background: white; border-radius: 10px; overflow: hidden; }
th, td { padding: 18px; text-align: left; border-bottom: 1px solid #eee; }
th { background: #1e3a2b; color: white; }
tr:hover { background: #f9f9f9; }

/* FOOTER */
footer {
    background: #1e3a2b;
    color: #fff;
    padding: 12px 0;
    text-align: center;
}

.footer-content p {font-size: 0.9rem; margin-top: 0px; }

/* index.html (Home Page) */

.hero {
    height: auto;
    min-height: 300px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.banner {
    width: 80%;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.banner img:hover {
    transform: scale(1.02);
}

.welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0;
}

.welcome-text {
    flex: 1;
    text-align: center;
}

.highlights-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
    margin: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.highlight-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 10px 20px;
    position: relative;
}

.highlight-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #ddd;
}

.highlight-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.highlight-item h3 {
    font-size: 1.1rem;
    color: #1e3a2b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .panoramic-banner { width: 95%; }
    .panoramic-banner img { height: 250px; }
    .welcome-container { flex-direction: column; text-align: center; }
    .welcome-image-wrapper img { margin: 0 auto; }
    .highlight-item:not(:last-child)::after { display: none; }
    .highlight-item { padding-bottom: 30px; }
}

/* history.html */

.history-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.history-content h3 {
    color: #1e3a2b;
    margin-top: 30px;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
    margin-bottom: 15px;
}

.history-list {
    margin-left: 20px;
    list-style-type: disc;
}

.history-list li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.history-list strong {
    color: #2c3e50;
}

/* culture.html */

.tradition-section { margin-bottom: 60px; }

.food-section {
    background: #fdf2e9;
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 50px;
}

.food-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.food-item img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.food-text { flex: 1; }

.food-text h3 {
    color: #d35400;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.restaurant-info {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #666;
}

.restaurant-info a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.restaurant-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .food-item { flex-direction: column; text-align: center; }
    .food-item img { width: 100%; height: auto; }
}

/* tourism.html */

.tourism-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.tourism-section:last-of-type {
    border-bottom: none;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #1e3a2b;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #e67e22;
}

.map-link {
    margin-top: 10px;
    display: inline-block;
}

button {
    cursor: pointer;
    padding: 5px 10px;
}

.info {
    font-size: 0.8rem;
    color: #e67e22;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
}

.other-attractions {
    margin-top: 30px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #444;
}

.other-attractions a {
    color: #1e3a2b;
    text-decoration: none;
    font-weight: 600;
}

.other-attractions a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* transport.html */

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.transport-info-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #e67e22;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.transport-info-box h3 {
    color: #1e3a2b;
    margin-bottom: 15px;
}

.note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #555;
    font-size: 15px;
}

@media (max-width: 768px) {
    .transport-grid { grid-template-columns: 1fr; }
}

/* contact.html */

.form {
  max-width: 500px;
  margin: auto;
}

.group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
}

button {
  padding: 8px 15px;
  background: #1e3a2b;
  color: white;
  border: none;
  cursor: pointer;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
