* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}

:root {
  
  --primary-color: #242134;
  --secondary-color: #f56b45;
  --accent-color: #ffaa00;
  --accent-light: #ffd100;
  --light-bg: #e9ecef;
  --dark-text: #242124;
  --light-text: #f4f4f4;
  --card-bg: #dedede;
}

body {
  font-family: 'Noto Sans', sans-serif;
  overflow-x: hidden;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

/* Header Styles */
.header {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}

.logo-link {
  transition: transform 0.3s ease;
  z-index: 1001;
}

.logo-link:hover {
  transform: scale(1.05);
}

header img {
  margin-left: 0;
  width: 233px;
  height: 50px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  margin-left: auto;
}

.header nav {
  margin-left: auto;
  height: 75px;
  display: flex;
  align-items: center;
}

.header nav div {
  height: 100%;
  display: flex;
  align-items: center;
}

.header nav div ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header nav div ul li {
  padding: 10px 36px;
  position: relative;
}

.header nav div ul li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.header nav div ul li:hover::after {
  width: 80%;
  left: 10%;
}

.header nav div ul li:hover {
  background-color: rgba(255, 170, 0, 0.2);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.header nav div ul li a {
  font-family: "Prompt", serif;
  font-weight: 600;
  font-style: normal;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  height: 100%;
  line-height: 55px;
}

.header nav div ul li:hover a {
  color: var(--accent-color);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Main Content Styles */
.main {
  min-height: calc(100vh - 75px - 120px);
  display: flex;
  flex-direction: column;
  background-color: var(--light-bg);
  width: 100%;
  overflow-x: hidden;
}

/* Enhanced Hero Section */
.hero-wrapper {
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #d4d8dd 100%);
  position: relative;
  overflow: hidden;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0l100,100M100,0l-100,100" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 20px;
  gap: 40px;
}

.hero-text {
  width: 50%;
  padding-right: 40px;
  animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: "Bona Nova SC", serif;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-text);
  line-height: 1.2;
  text-shadow: 2px 2px 0 var(--accent-light);
  position: relative;
}

.highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(255, 170, 0, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-description {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 30px;
  line-height: 1.6;
}

.features-section {
  margin: 20px 0 30px;
}

.features-section h5 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.features-section h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

.features-list {
  list-style-type: none;
  padding-left: 10px;
}

.features-list li {
  margin-bottom: 12px;
  padding: 8px 15px;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.features-list li:hover {
  background-color: rgba(255, 170, 0, 0.1);
  transform: translateX(5px);
  color: var(--secondary-color);
}

.feature-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-button {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 24px);
  border-radius: 30px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  white-space: nowrap;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button:first-child {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 107, 69, 0.3);
}

.cta-button:first-child:hover {
  background-color: #e05a35;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(245, 107, 69, 0.4);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
  background-color: rgba(245, 107, 69, 0.1);
  transform: translateY(-3px);
}

.hero-image {
  width: 50%;
  position: relative;
  height: clamp(300px, 50vw, 500px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(36, 33, 52, 0.3) 0%,
    rgba(245, 107, 69, 0.2) 100%
  );
  z-index: 1;
}

.img-cont {
  background: url("./assets/illustration.webp") center/cover no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
  transition: transform 10s ease;
}

.hero-image:hover .img-cont {
  transform: scale(1.1);
}

/* Banner Section */
.banner-section {
  background-color: var(--primary-color);
  padding: clamp(10px, 2vw, 15px) 0;
  width: 100%;
  margin: 20px 0;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  padding: 0 clamp(10px, 2vw, 20px);
  color: var(--light-text);
  flex-wrap: wrap;
}

.banner-content i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.banner-content p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-align: center;
  margin: 0;
}

.banner-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 5px 15px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
}

.banner-link:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
  background-color: rgba(255, 170, 0, 0.1);
}

/* Art Submission Section */
.ArtSub {
  background-color: var(--card-bg);
  padding: clamp(20px, 4vw, 40px) clamp(15px, 2vw, 20px);
  margin: 20px 0;
}

.art-submission {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(15px, 3vw, 20px);
  background-color: var(--light-bg);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.art-submission h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 15px;
  color: var(--primary-color);
  font-family: "Prompt", sans-serif;
}

.art-submission p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 20px;
  padding: 0 clamp(10px, 2vw, 20px);
}

.email-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 15px);
  margin-top: 20px;
  flex-wrap: wrap;
}

.email-container img {
  height: 24px;
  width: 24px;
}

.email-link {
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2vw, 15px);
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 5px;
  background-color: rgba(245, 107, 69, 0.1);
}

.email-link:hover {
  color: var(--accent-color);
  background-color: rgba(255, 170, 0, 0.1);
  transform: translateY(-2px);
}

/* Footer Styles */
footer {
  background-color: var(--primary-color);
  padding: clamp(20px, 4vw, 30px) 0;
}

.footerContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 2vw, 20px);
}

.socialIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 20px);
}

.socialIcons img {
  height: clamp(40px, 8vw, 54px);
  width: auto;
  margin-right: clamp(10px, 2vw, 20px);
}

.socialIcons a {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  margin: 0 clamp(5px, 1vw, 10px);
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.socialIcons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.socialIcons a i {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--primary-color);
}

.footerBottom {
  color: var(--light-text);
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.designer {
  color: var(--accent-color);
  font-weight: 600;
}

/* Updated Media Queries */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-text, .hero-image {
    width: 100%;
    max-width: 600px;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .hero-image {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .art-submission {
    padding: 15px;
  }

  .socialIcons {
    flex-direction: row;
    justify-content: center;
  }

  .header {
    justify-content: space-between;
    padding: 0 15px;
  }

  .mobile-menu-btn {
    display: block;
    color: white;
  }

  .header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-color);
    transition: right 0.3s ease;
    margin: 0;
    padding: 0;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .header nav.active {
    right: 0;
  }

  .header nav div {
    width: 100%;
    height: 100%;
    padding: 80px 0 20px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .header nav div ul {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 10px;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .header nav div ul li {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    display: block;
  }

  .header nav div ul li::after {
    display: none;
  }

  .header nav div ul li:hover {
    background-color: rgba(255, 170, 0, 0.2);
  }

  .header nav div ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: white;
    font-weight: 500;
    width: 100%;
    text-align: center;
  }

  .header nav div ul li a:hover {
    color: var(--accent-color);
  }
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .banner-content p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .email-container {
    flex-direction: column;
  }

  .socialIcons img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .features-list li {
    font-size: 0.95rem;
    padding: 6px 12px;
  }

  .art-submission h3 {
    font-size: 1.5rem;
  }

  .banner-content {
    padding: 10px;
  }

  .banner-content i {
    font-size: 1.2rem;
  }

  .banner-link {
    padding: 4px 12px;
    font-size: 0.9rem;
  }

  .socialIcons {
    flex-direction: column;
    align-items: center;
  }

  .socialIcons a {
    margin: 5px 0;
  }

  .header {
    padding: 0 10px;
  }

  header img {
    width: 180px;
    height: auto;
  }

  .header nav {
    width: 100%;
  }

  .header nav div ul li a {
    font-size: 1rem;
    padding: 12px 15px;
    color: white;
  }
}

/* Add smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Improve focus states for accessibility */
a:focus, button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Add transition for smoother interactions */
.cta-button, .banner-link, .email-link, .feature-icon {
  transition: all 0.3s ease;
}

/* Improve card hover effects */
.art-submission:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Improve touch targets for mobile */
button, 
a, 
input, 
select, 
textarea {
  min-height: 44px;
  min-width: 44px;
}

/* Improve text readability on mobile */
p, li, a {
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Add better spacing for mobile */
section, 
.hero-wrapper, 
.banner-section, 
.ArtSub {
  margin: clamp(10px, 2vw, 20px) 0;
}

/* Improve image loading */
img {
  max-width: 100%;
  height: auto;
  display: block;
}