@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    /* colors */
    --white-color: #ffffff;
    --black-color: #050505;
    --red-color: #960000;

    /* font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* border radius*/
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* site max width */
    --site-max-width: 1300px;

}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color:#ac0000;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}


header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

header {
    background-color:#fff2e6;
}

.navbar .nav-menu .logo-text {
    color:#ac0000;
    font-size: 2rem;
    font-weight: 600;
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color:#000000;
    font-size: 1.12rem;
    border-radius: 30px;
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color:#ffffff;
    background:#e6b101cc;
}

.intro {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.intro h2 {
  color: #c9302c;
  font-size: 32px;
  margin-bottom: 20px;
}

.intro p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fffcf8;
}



.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .card {
    width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }

  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .card-content {
    padding: 20px;
    text-align: center;
  }

  .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
  }

  .card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: justify;
  }

  .card-content a {
    display: inline-block;
    margin-top: 10px;
    color: #e53935;
    text-decoration: none;
    font-weight: bold;
  }

  .card-content a:hover {
    text-decoration: underline;
  }

  footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 12px 0;
}

/* --- ABOUT PAGE --- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 50px;
  padding: 50px;
  color: #000000;
}

.about-left h2,
.about-left h3,
.about-right h3 {
  margin-bottom: 12px;
  color:#c9302c;
}



.list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-left audio {
  width: 100%;
  margin-top: 8px;
}

.about-right p {
  margin: 8px 0;
}

.about-right video {
  margin-top: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr; 
}
}

body.about-page {
  background: url("/image/bg1.jpg");
  background-size: cover; 
 
}

.image-container {
      width: 176px; 
      height: 176px;
      overflow: hidden; 
      border-radius: 10px; 
    }

    .image-container img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease; 
    }

    .image-container img:hover {
      transform: scale(1.2); 
    }

        .story {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 10%;
            gap: 50px;
        }

        .story:nth-child(even) {
            flex-direction: row-reverse;
            background-color: #fff8ee;
        }

        .story img {
            width: 45%;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }

        .story img:hover {
            transform: scale(1.03);
        }

        .story-content {
            width: 50%;
        }

        .story-content h2 {
            color: #a0690a;
            margin-bottom: 15px;
        }

        .story-content p {
            font-size: 17px;
            line-height: 1.6;
        }

        


        .place {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 10%;
            gap: 50px;
        }

        .place:nth-child(even) {
            flex-direction: row-reverse;
            background-color: #fcf0ee;
        }

        .place img {
            width: 45%;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }

        .place img:hover {
            transform: scale(1.03);
        }

        .place-content {
            width: 50%;
        }

        .place-content h2 {
            color: #9b0404;
            margin-bottom: 15px;
        }

        .place-content p {
            font-size: 17px;
            line-height: 1.6;
        }

        
        
        .culture {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 10%;
            gap: 50px;
        }

        .culture:nth-child(even) {
            flex-direction: row-reverse;
            background-color: #fcf0ee;
        }

        .culture img {
            width: 45%;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }

        .culture img:hover {
            transform: scale(1.03);
        }

        .culture-content {
            width: 50%;
        }

        .culture-content h2 {
            color: #4a7526;
            margin-bottom: 15px;
        }

        .culture-content p {
            font-size: 17px;
            line-height: 1.6;
        }

        

body.contact {
  background: url("/image/bg.jpg");
  background-size: cover; 
  color: #f1f1f1; 
}

/* Contact form */

:root{
  --bg:#8a9cbe8d;
  --card:#7791bb93;
  --muted:#ffffff;
  --text:#e8eefc;
  --brand:#2dd4bf;
  --accent:#60a5fa;
  --border:#1f2b44;
}

form {
    
    
    border-radius:18px;
    padding:20px;
    max-width:680px;
    margin:20px auto
}
label{
    display:block;
    margin:10px 0 6px;
    color:black;
}
input, textarea{
    width:100%;
    padding:10px 12px;
    border:1px solid var(--border);
    border-radius:10px;
    background:#ffffff;
    color:var(--bg)
}
input:focus, textarea:focus{
    outline:none;
    border-color:var(--accent)
}
button {
    border: 0;
    padding: 10px 16px;
    border-radius: 10px;
    color: black;
    font-weight: 700;
    cursor: pointer;
}

button:hover{
    opacity:.92;
}

.section-title {
    text-align: center;
    margin-top: 20px;
    color:#a90202;
}
