/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-red {
    display: inline-block;
    background-color: #E9A254;
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-red:hover {
    background-color: #E9A254;
    opacity: 0.9;
}

.btn-orange {
    display: inline-block;
    background-color: #EEBF79;
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}
.btn-orange:hover {
    opacity: 0.9;
}
/* Header */
header {
    background-color: #B1E2DD;
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 55px;
    width: auto;
    margin-right: 12px;
}

.brand-name {
    font-family: 'Arial Black', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #EBAD1F;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #fff;
}

/* Navigation */
.main-nav {
    height: 100px;
}

.nav-list {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 15px;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: #333;
	font-family: 'Open Sans';
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: color 0.3s;
    height: 100%;
}

.nav-link:hover {
   color: rgba(241,197,80,1.00);
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 0;
    border-top: 3px solid #E9A254;
	font-family: 'Open Sans', sans-serif;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown:focus-within .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: normal;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid #eee;
    height: auto;
    text-transform: none;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: #F59B33;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
	
}

.hero-overlay h2 {
    background-color: rgba(255, 255, 255, 0.6);
    color: #3b4a6b;
    padding: 20px;
    font-size: 2.5rem;
    margin-bottom: 0;
    border-radius: 5px;
	font-family: 'Short Stack', cursive;
    font-weight: bold;
}

/* Features General */
.features {
    padding: 50px 0;
}

.features-yellow {
    background-color: #FAEDCD;
}

.features-green {
    background-color: #F7F7EA;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 50px;
    transition: transform 0.3s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
	align-items: flex-start; 
}

.card-hover:hover {
    transform: scale(1.05);
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.text-col {
    flex: 1;
	color: #362517;
}

.text-col p {
	font-family: 'Open Sans', serif;
    font-size: 1.3rem;
    line-height: 2;
    font-weight: 500; 
	color: #362517;
}

.img-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.text-col .headline-text {
    font-family: 'Faustina', serif;
    font-size: 1.7rem;
    font-weight: 600;       
    color: #624035;
    line-height: 1.4;
	 margin-bottom: 40px;
}


.feature-img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


/* Bottom Footer */
.bottom-footer {
    background-color: #A3D1CC;
    padding: 20px 0;
}


.bottom-footer-content {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.home-copyright {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    padding: 20px 0;
	font-family: 'Open Sans', sans-serif;
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e93b2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top:hover {
    background-color: #cc291f;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
body {
  font-family: 'Open Sans', sans-serif;
}

.nav-list,
.nav-list .nav-link,
.dropdown-menu a {
  font-family: 'Open Sans', sans-serif !important;
}

.hero-overlay h2,
.hero h2 {
  font-family: 'Short Stack', cursive !important;
}


@media (max-width: 768px) {
  header,
  header#top,
  .container.header-content,
  .header-content,
  .main-nav,
  .nav-list {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  header#top {
    position: static !important;
    overflow: visible !important;
  }

  .header-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 12px 16px 14px !important;
    flex-wrap: nowrap !important;
  }

  .main-nav {
    width: 100% !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    float: none !important;
    clear: both !important;
  }

  .nav-list {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    float: none !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .nav-item {
    width: 100% !important;
    position: static !important;
  }

  .nav-link {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 12px 10px !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  .nav-list .nav-item:last-child {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
  }

  .dropdown-menu {
    display: none !important;
  }

  .page-content-wrapper {
    flex-direction: column !important;
    gap: 25px !important;
    padding: 30px 15px !important;
  }

  .sidebar {
    width: 100% !important;
    position: static !important;
    top: auto !important;
  }
}
