@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

section{
  padding: 60px 100px 0;
}

.main{
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url(../image/photo/alneima5.png)no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.main .content{
  /* max-width: 800px; */
  padding-top: 20%;
}

.main .content h2{
  color: #fff;
  font-size: 1.7em;
  font-weight: 500;
}

.main .content h2 span{
  color: #fff;
  font-size: 2.8em;
  font-weight: 600;
}

.animated-text{
  position: relative;
  height: 70px;
  overflow: hidden;
}

.animated-text h3{
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 1px;
}

.animated-text h3:nth-child(1){
  animation: text-move 10s infinite;
}

@keyframes text-move{
  0%{
    margin-top: 0;
  }
  25%{
    margin-top: -70px;
  }
  50%{
    margin-top: -140px;
  }
  75%{
    margin-top: -70px;
  }
  100%{
    margin-top: 0;
  }
}


.btn{
  color: #fff;
  background: #336021;
  font-size: 1em;
  font-weight: 600;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 2px;
  margin-top: 30px;
  transition: 0.5s ease;
}

.btn:hover{
  background: #e68c3a;
}

.media-icons{
  margin-top: 50px;
}

.media-icons a{
  color: #fff;
  font-size: 25px;
  margin-right: 30px;
}

header{
  z-index: 999;
  position: fixed;
  background: rgba(255, 255, 255, 0.0);
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s ease;
}

header.sticky{
  background: #e68c3a;
  padding: 2px 200px;
  height: 15%;
}

header .brand{
  color: #fff;
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

header .brand .logo{
  width: 12%;
}

header .navigation{
  position: relative;
}

header .navigation a{
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
}

header .navigation a:hover{
  color: #e68c3a;
}

header.sticky .navigation a:hover{
  color: #000;
}

body{
  min-height: 110vh;
}

.title{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}




:root {
  --primary: #14235b;
  --accent: #fd6a21;
  --bg: #f7f8fa;
  --card: #fff;
  --border: #e3e6ee;
  --radius: 16px;
  --shadow: 0 2px 16px rgba(20,35,91,0.04);
  --transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color:#555;
  line-height: 1.6;
}
/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 3vw;
  font-size: 0.93rem;
}
.topbar-contact {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  color: #555;
}
.topbar-contact i { 
  color: var(--accent); 
  margin-right: 0.4em; 
}
.topbar-social {
  display: flex;
  gap: .7rem;
}
.topbar-social a {
  color: #fd6a21;
  text-decoration: none;
  font-size: 1.13em;
  transition: color .15s;
}
.topbar-social a:hover { 
  color:  #555;
}

/* Navbar */
.navbar {
  max-height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3vw;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}

.navbar-logo {
  font-weight: 700;
  font-size: 1.65em;
  display: flex;
  align-items: center;
  /* gap: 0.7em; */
  letter-spacing: -1px;
  color: #2cb34f;
}

.navbar-logo img {
  width: 100px; 
  /* height: 36px;  */
  border-radius: 50%;
  /* background: var(--accent); */
  display: inline-block;
}

.navbar-links {
  display: flex;
  gap: 0.3em;
  align-items: center;
}

.navbar-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.07em;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  transition: background .18s,color .18s;
}

.navbar-links span{
  color: var(--accent);
  font-weight: 600;

}

.navbar-links a.active,
.navbar-links a:hover {
  color: var(--accent);
  /* background: #f9f2ed; */

}

.navbar-cta {
  background: #2cb34f;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  padding: 0.7em 1.5em;
  border-radius: 2em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(253,106,33,0.08);
  transition: var(--transition);
  margin-left: 1.5em;
  text-decoration: none;
}

.navbar-cta:hover {
  background: #555;
}

/* Hero */
.hero {
  /* background: #f0f1f5; */
  padding: 2.7rem 0 1.5rem 0;
  text-align: center;
  /* border-bottom: 1px solid var(--border); */
}

.hero h1 {
  font-size: 2.2em;
  font-weight: 700;
  margin: 0;
  letter-spacing: -2px;
}

.breadcrumb {
  color: #999;
  font-size: 1em;
  margin-top: 0.6em;
}

.breadcrumb span {
  color: var(--accent);
  font-weight: 500;
}

.hero-divider {
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(-45deg,#14235b 0 12px,transparent 12px 24px);
  opacity: .08;
  margin-bottom: 2.2rem;
  margin-top: 0;
}


/* Section Title */
.section-title {
  text-align: center;
  padding-bottom: 53px;
  /* margin: 2rem 0 0 0; */
}

section .line {
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #478613;
    margin-right: 10px;
    border-radius: 2px;
}

.section-title .section-subtitle {
  /* color: #b1b5c9; */
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: .5em;
}

.section-title h2 {
  color: #fd6a21;
  font-size: 2em;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
  margin-bottom: 4%;
}

.section-title p{
  padding-top: 4%;
  font-weight: bold;
  font-size: large;
}

.section-title .highlight {
  color: #2cb34f;
  font-weight: 800;
}

/* news */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

.events-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem 1rem;
}

.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.events-header h2 {
  font-size: 1.19rem;
  font-weight: 500;
  margin: 0;
  color: #2cb34f;
  letter-spacing: 0.01em;
}

.events-view-toggle {
  display: flex;
  gap: 1.5em;
}

.events-view-toggle button {
  background: none;
  border: none;
  color: #b9b9b9;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5em;
  padding: 0;
  outline: none;
}

.events-view-toggle .active,
.events-view-toggle button:disabled {
  color: #18a286;
  cursor: default;
}
.events-view-toggle button:disabled {
  opacity: .5;
}

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 2.2rem;
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
}

.event-date {
  width: 60px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: .5em;
}
.event-month {
  display: block;
  font-size: .95em;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
  color:#2cb34f;
}
.event-day {
  display: block;
  font-size: 2em;
  font-weight: 700;
  color: #fd6a21;
  letter-spacing: -1px;
  line-height: 1.1;
}

.event-image {
  width: 240px;
  height: 150px;
  border-radius: 6px;
  overflow: hidden;
  background: #f6f6f6;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-details {
  flex: 1 1 0;
  min-width: 180px;
}

.event-title {
  font-size: 1.13rem;
  /* font-weight: 600; */
  margin: 0 0 0.2em 0;
  color: #fd6a21;
}

.event-address {
  font-style: normal;
  color: #666;
  font-size: 0.97em;
  margin-bottom: .2em;
}

.event-time {
  font-size: 0.97em;
  color: #888;
  margin-bottom: .45em;
}

.event-desc {
  font-weight: bold;
  font-size: 0.99em;
  color: #555;
  margin: 0 0 1.1em 0;
  max-width: 460px;
}

.event-link {
  color: #18a286;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  display: inline-block;
  margin-top: .5em;
  transition: color .15s;
}

.event-link:hover {
  color: #0e6f5c;
  text-decoration: underline;
}

.prev-events-link {
  margin-top: 2.5em;
  font-size: 1.05em;
}
.prev-events-link a {
  color: #888;
  text-decoration: none;
  font-weight: 500;
  transition: color .14s;
}
.prev-events-link a:hover {
  color: #18a286;
  text-decoration: underline;
}

/* Responsive Styling */
@media (max-width: 900px) {
  .event-card {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .event-image {
    width: 100%;
    height: 180px;
    margin-bottom: .7em;
  }
  .event-date {
    width: auto;
    display: flex;
    gap: .8em;
    justify-content: flex-start;
    margin-bottom: .3em;
    margin-top: 0;
  }
  .event-day {
    margin-left: .1em;
  }
}

@media (max-width: 600px) {
  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2em;
  }
  .event-card {
    padding: 1.2rem 0;
  }
  .event-details {
    min-width: 0;
  }
}