*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Tektur-Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

@font-face {
  font-family: "Tektur-Regular";
  src: url("../assets/fonts/Tektur-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  transition: color 0.3s ease;
}
a:hover {
  color: #ff6b35;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
section {
  padding: 3rem 0;
}

main {
  flex: 1;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

footer {
  margin-top: auto;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: 3rem;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff6b35;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  font-weight: 500;
  color: #333333;
}
nav a:hover {
  color: #ff6b35;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero {
  background: #ffffff;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-image {
  flex: 0 0 50%;
}

.hero-image img {
  width: 800px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-text {
  flex: 0 0 50%;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .hero-image img {
    width: 100%;
    height: 300px;
  }
  .hero-text {
    flex: 0 0 auto;
    width: 100%;
  }
}
.nations {
  background-color: #ffffff;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.nations h2 {
  margin-bottom: 3rem;
}

.nations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.nation-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.nation-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.nation-card h3 {
  padding: 1.5rem 1.5rem 0;
}
.nation-card p {
  padding: 0 1.5rem 1.5rem;
  color: #666666;
}
.nation-card a {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  padding: 0.5rem 1rem;
  background-color: #ff6b35;
  color: white;
  border-radius: 8px;
  font-weight: 500;
}
.nation-card a:hover {
  background-color: rgb(255, 69.6336633663, 2);
  color: white;
}

@media (max-width: 768px) {
  .nations-grid {
    grid-template-columns: 1fr;
  }
}
.facts {
  background-color: #ffffff;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.facts h2 {
  margin-bottom: 3rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fact-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.fact-card h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
}
.fact-card p {
  color: #666666;
}

@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
}
footer {
  background-color: #ffffff;
  padding: 2rem 0;
  text-align: center;
}
footer p {
  margin: 0;
  opacity: 0.8;
}

.gallery {
  background-color: #ffffff;
  margin-bottom: 3rem;
}

.nation-hero {
  background: #ffffff;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.nation-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nation-hero .hero-image {
  flex: 0 0 50%;
}

.nation-hero .hero-image img {
  width: 800px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nation-hero .hero-text {
  flex: 0 0 50%;
}

.nation-hero .hero-text h1 {
  margin-bottom: 1.5rem;
}

.nation-hero .hero-text p {
  font-size: 1.25rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .nation-hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .nation-hero .hero-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .nation-hero .hero-image img {
    width: 100%;
    height: 300px;
  }
  .nation-hero .hero-text {
    flex: 0 0 auto;
    width: 100%;
  }
}
.nation-info {
  background-color: #ffffff;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.nation-info h2 {
  margin-bottom: 1.5rem;
}
.nation-info p {
  font-size: 1.1rem;
  line-height: 1.8;
}/*# sourceMappingURL=main.css.map */