
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

/* VARIABLES */
:root {
    --green: #1f7a53;
    --orange: #f4a024;
    --light-bg: #f7f9f8;
    --dark: #1a1a1a;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --white: #f7f7f7;
}

body {
    /* font-family: "Segoe UI", Arial, sans-serif; */
    font-family: Arial, sans-serif;;
    background: var(--green);
    color: var(--white);
    
   
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:  #2f5d3a;
    backdrop-filter: blur(8px);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.logo img {
    width: 110px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    position: relative;
}
.navbar ul{
list-style:none;
display:flex;
gap:30px;
}

.navbar a{
text-decoration:none;
color:black;
font-weight:500;
}

.dropdown{
position:relative;
}

/* Hidden by default */
.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:rgb(189, 118, 5);
display:none;
min-width:200px;
box-shadow:0 5px 20px rgba(0,0,0,.15);
z-index:999;
padding:0;
margin:0;

/* animation */
opacity:0;
transform:translateY(10px);
transition:.3s ease;
}

.dropdown-menu li{
padding:10px;
list-style:none;
}

/* Show on hover */
.dropdown:hover .dropdown-menu{
display:block;
opacity:1;
transform:translateY(0);
}

/* hover effect on items */
.dropdown-menu li:hover{
background:#824f0c;
}




/* Underline animation */
.nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--orange);
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* BODY */


/* HERO SECTION */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 100px 20px;
  background: url('images/IMG-1.JPG') center/cover no-repeat; 
}


/* GREEN CARD */
.card {
  background:  #2f5d3a;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  text-align: center;
}

/* IMAGE */
.card img {
  width: 100%;
  margin-bottom: 80px;
}

/* TITLE */
.card h1 {
  font-family: 'Playfair Display', serif;
  color: #e6e1dc;
  font-size: 3.5rem;
  line-height: 1.1;
}

/* SUBTITLE */
.card h2 {
  font-family: 'Times New Roman', serif;
  color: #e6e1dc;
  font-size: 1.5rem;
  margin-top: 20px;
}

/* GENERAL SECTIONS */
section {
  padding: 80px 20px;
  background:  #2f5d3a;
}

/* ALTERNATE BACKGROUND */
.section:nth-child(even) {
  background: #2f5d3a;
}

/* SECTION TITLES */
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

/* UNDERLINE */
.section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background:  #b0c6b5;
  display: block;
  margin: 10px auto;
}

.section-welcome{
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: center;  
  font-family: 'Edwardian Script ITC', serif; 
}

/* SPLIT LAYOUT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal columns */
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
  padding: 10px 20px;
}

/* IMAGE */
.split .image img {
  width: 100%;
  height: 300px;       /* force same height */
  object-fit: cover;   /* prevents stretching */
  border-radius: 10px;
}
.split.reverse {
  direction: rtl;
}

.split.reverse .text {
  direction: ltr;
}

/* TEXT */
.split .text h3 {
  margin-bottom: 10px;
}

.split .text p {
  line-height: 1.6;
}

.socials a {
  margin: 30 10px;
  font-size: 25px;
  color: #1a1a1a;
  transition: 0.3s;
  margin-top: 30px;
}

.socials a:hover {
  color: #f4a024;
}

/* FOOTER */
.footer {
  background: #c7d7c4;
  padding: 80px 10px;
  color: #0e0d0d;
}

/* CONTAINER */
.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 10px ;
  border-left: 0px solid #888;
  border-right: 0px solid #888;
  border-top: 0px solid #888;
  border-bottom: 2px solid #070707;
  
}

/* COLUMNS */
.footer-container > div {
  padding: 60px;
}

/* DIVIDERS */
.footer-container > div:not(:last-child) {
  border-right: 1px solid #888;
}

/* LEFT */
.footer-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-top: 10px;
}


/* RIGHT LINKS */
.footer-right a {
  display: block;
  margin-bottom: 10px;
  color: black;
 
}

/* COPYRIGHT */
.copyright {
  text-align: right;
  margin-top: 20px;
  font-size: 1rem;
  margin-bottom: 0px;
}

/* ANIMATIONS */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}


/* BUTTONS */

.btn-group {
    margin-top: 60px;
}

.btn {
    background: var(--orange);
    color: white;
    padding: 14px 26px;
    margin: 60px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn:hover {
    background: #e28d12;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}