/* General Styles */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      transition: 0.3s;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f7f7f7;
      color: #333;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      width: 100%;
      display: block;
    }

   .container {
     max-width: 1280px;
     margin: 0 auto;
     width: 100%;
    }

    @font-face {
     font-family: 'Copse-Regular';
     src: url('./fonts/Copse-Regular.ttf') format('truetype'); /* .ttf file */
     font-weight: normal;
     font-style: normal;
    }

    h1 {
      font-size: 1.5rem;
      line-height: 1.5rem;
      font-family: 'Copse-Regular'; /* Use your custom font */
      color: #000000;
    }

    .desktop-image{
    display:block;
    }

    .mobile-image{
    display:none;
    }


    /* =========================
       BACKGROUND PATTERN
    ========================== */

    .page-wrapper {
    background-image: url('images/indexbg.png'); /* Replace with your background pattern image */
    background-size: auto; /* Default size for repeating patterns */
    background-position: top left; /* Start the pattern at the top-left corner */
    background-repeat: repeat; /* Repeat the pattern */
    }

    /* =========================
       TOPBAR
    ========================== */

    .topbar {
      width: 100%;
      padding: 20px 40px;
      position: relative;
      z-index: 1000;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 30px; /* tighter spacing */
    }

    .topbar a,
    .topbar button {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      color: #555555;
      font-family: inherit;
      transition: 0.3s;
    }

    .topbar a:hover,
    .topbar button:hover {
      color: #d8ec4b; 
    }

    /* =========================
       DROPDOWN
    ========================== */

    .dropdown {
      position: relative;
      display: flex;
      align-items: center;
     }

    /* ===== BUTTON ===== */
    .dropbtn {
     background: none;
     border: none;
     cursor: pointer;
     font-size: 1rem;
     padding: 8px 12px;
     border-radius: 999px;
     transition: 0.2s ease;
    }

    /* hover + active look for menu word */
    .dropbtn:hover,
    .dropdown.open .dropbtn {
      background: #0053B3;
      color: white;
    }

    /* ===== MENU BOX ===== */
    .dropdown-content {
      position: absolute;
      top: 45px;
      right: 0;
      min-width: 200px;
      background: #FCF9E9;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.2s ease;
      pointer-events: none;
    }

    /* show menu when open */
    .dropdown.open .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
      width: 335px;
    }

    /* ===== ITEMS ===== */
    .dropdown-content a {
      display: block;
      padding: 12px 15px;
      transition: 0.2s ease;
      color: #555555;
    }

    /* hover effect */
    .dropdown-content a:hover {
      background: #0053B3;
      color: white;
    }

    /* =========================
    HERO
    ========================== */

    .row {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 40px;
      align-items: center;
      padding: 0px 40px;
    }

    .row1 {
      grid-template-columns: 1fr;
      align-items: center;
      padding: 0px 40px;
    }

    .calendar-title {
      height: 130px;
      background-image: url('images/wow01.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      font-weight: bold;
      font-family: 'Copse-Regular'; /* Use your custom font */
      text-align: center;
      padding-top: 50px;
      border-radius: 6px;
     }

    .content-row {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 20px;
      padding: 20px 40px;
      align-items: center;
    }

    .content-row2 {
      display: grid;
      grid-template-columns: 3fr 1fr;
      gap: 20px;
      padding: 20px 0px;
      align-items: center;
    }


    .title-row {
    display: flex;
    align-items: center; /* vertically center image and text */
    gap: 20px;           /* space between image and text */
    }

    .title-row p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Copse-Regular'; /* Use your custom font */
    }

    .event-tag {
      display: inline-block;
      padding: 10px 20px;
      margin: 10px 0px;
      border-radius: 30px;
      color: white;
      font-weight: bold;
      background: #f7931e;
    }

    .event-tag2 {
      display: inline-block;
      margin-top: -18px;
      margin-bottom: 10px;
      padding: 10px 20px;
      border-radius: 30px;
      color: white;
      font-weight: bold;
      background: #166A39;
    }

    .event-tag3 {
      display: inline-block;
      padding: 10px 20px;
      margin: 10px 0px;
      border-radius: 30px;
      color: white;
      font-weight: bold;
      background: #166A39;
    }

    .event-tag4 {
      display: inline-block;
      padding: 10px 20px;
      margin: 10px 0px;
      border-radius: 30px;
      color: white;
      font-weight: bold;
      background: #D9A20B;
    }

    .doodle {
    height: auto;
    display: block;
    justify-content: flex-end;   
    text-align: right; 
    }

   
    /* =========================
       FOOTER
    ========================== */

    footer {
      padding: 30px;
      font-size: 0.75rem;
      color: #666;
      background: #F2F2F2;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }


    /* =========================
       Tablet STYLE
    ========================== */

    @media (max-width: 960px) {


    .content-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px 40px;
      align-items: center;
    }

    .calendar-title {
      height: 90px; 
      font-size: 1.5rem;
     }


     }

    /* =========================
       MOBILE STYLE
    ========================== */

    @media (max-width: 768px) {

      .topbar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
      }

      .dropdown-content {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
      }

    .desktop-image{
        display:none;
    }

    .mobile-image{
        display:block;
        width:100%;
        height:auto;
    }

    .row {
      display: grid;
      grid-template-columns: 1fr;
      height: auto;
      justify-items: center;
      align-items: center;
    }

    .row img{
      width: 65%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .content-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px;
      align-items: center;
      text-align: center;
      justify-content: center;
    }

    .content-row img{
      width: 100%;
    }

    .content-row2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px;
      align-items: center;
      text-align: center;
      justify-content: center;
    }

    .title-row {
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
      padding:20px;
    }

    .row1 {
      text-align:center;
    }

    .award-icon{
      width:100px;
      margin:20px auto 0;
      display:block;
    }

    .event-tag2 {
      display: block;
      width: fit-content;
      margin: 10px auto;
    }

    .footer-grid {
    grid-template-columns: 1fr;
    }

    }
