/* ==================================== */
/* 🌐 GLOBAL PAGE SETUP */
/* ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  overflow-x: hidden;
}


html {
  scroll-behavior: smooth;
}

/* ---------- NAVBAR ---------- */
.navbar {
  width: 100%;
  background: rgba(0, 0, 0, 0.2); /* 🔥 make it semi-transparent */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);     /* 🔥 adds the blur effect */
  -webkit-backdrop-filter: blur(15px); /* for Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* optional subtle border */
}

.logo {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

.logo span {
  color: #00ff9d;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #00ff9d;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ff9d;
}






/* ==================================== */
/* 🌍 Country Header Styling (Flag, Name, Line) */
/* ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}
.country-header {
    margin: 40px 0 20px 0;
    padding-top: 20px;
}

/* Alignment for Flag and Title */
.flag-and-title {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 10px; 
}

.large-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2); 
}

.country-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-left: 15px;
    margin-right: 20px;
    line-height: 40px; 
    white-space: nowrap;
}

/* The connecting line/dot style */
.title-line {
    position: relative;
    flex-grow: 1; 
    height: 2px;
    background-color: #fff;
    margin-right: 15px;
}

.title-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
}

/* Divider line between country sections (optional but helpful for clarity) */
.section-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

/* ==================================== */
/* ⭐ Review Card Styling */
/* ==================================== */

.review-grid {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap if screen is too small */
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 50px;
    padding-left: 10px;
}

.review-card {
    background-color: #ffffff;
    color: #000;
    padding: 30px;
    border-radius: 15px;
    width: 300px; 
    min-height: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #00ff9d; /* Your bright green color */
    font-size: 1.5rem; /* Slightly larger stars */
    margin-bottom: 15px;
}

.review-quote {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    margin: 10px 0;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
    margin-top: 15px;
}

.review-stars span.gray-star {
    /* Using a dark gray color */
    color: #555555 !important; 
    
    /* Ensure any text shadow/glow (like neon green) is completely removed */
    text-shadow: none !important; 
    
    /* Optional: If the font weight or size is being inherited oddly, you can reset it */
    font-weight: normal !important; 
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .review-grid {
        flex-direction: column; 
        gap: 20px;
    }
    .review-card {
        width: 100%; 
    }
    .country-title {
        font-size: 1.5rem;
    }
}