@charset "utf-8";
/* CSS Document */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 9999;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: bold;
            color: #e11d48;
        }

        .logo svg {
            width: 32px;
            height: 32px;
            fill: #e11d48;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #e11d48;
        }

        .donate-btn {
            background: #e11d48;
            color: white;
            padding: 10px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

        .donate-btn:hover {
            background: #be123c;
        }

        /* Hero Section */
        .hero {
            padding: 120px 20px 80px;
            background:url("resources/backmain.png");background-position: center; background-repeat: no-repeat; background-size: cover;
            text-align: center;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero .highlight {
            color: #e11d48;
        }

        .hero p {
            font-size: 20px;
            color: #000000;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn-primary {
            background: #e11d48;
            color: white;
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #be123c;
            transform: scale(1.05);
        }

        .btn-secondary {
            background: white;
            color: #e11d48;
            padding: 14px 32px;
            border: 2px solid #e11d48;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: #fff1f2;
        }

        /* Stats Section */
        .stats {
            padding: 60px 20px;
            background: white;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #fff1f2 0%, white 100%);
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: box-shadow 0.3s;
        }

        .stat-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .stat-card svg {
            width: 48px;
            height: 48px;
            margin-bottom: 15px;
        }

        .stat-card h3 {
            font-size: 22px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 5px;
        }

        .stat-card p {
            color: #6b7280;
            font-weight: 500;
        }

        /* Mission Section */
        .mission {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f9fafb 0%, #fff1f2 100%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 40px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 20px;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .mission-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s;
        }
		.mission-card1 {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s;
        }


        .mission-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .icon-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .icon-circle.rose {
            background: #ffe4e6;
        }

        .icon-circle.orange {
            background: #ffedd5;
        }

        .icon-circle svg {
            width: 32px;
            height: 32px;
        }

        .mission-card h3 {
            font-size: 26px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .mission-card p {
            color: #6b7280;
            line-height: 1.7;
        }
        .photo-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s;
        }
		.photo-card1 {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s;
        }
        .photo-card2 {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s;
        }

        /* About Section */
        .about {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f9fafb 0%, #fff1f2 100%);
            min-height: 100vh;
            display: none;
        }

        .about.active {
            display: block;
        }

        .about-content {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .about-content h2 {
            font-size: 32px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 25px;
        }

        .about-content p {
            color: #6b7280;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .value-card h3 {
            font-size: 18px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .value-card p {
            color: #6b7280;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f9fafb 0%, #fff1f2 100%);
            min-height: 100vh;
            display: none;
        }

        .contact.active {
            display: block;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h2 {
            font-size: 32px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            color: #374151;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e11d48;
            box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
        }


        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            background: #e11d48;
            color: white;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: #be123c;
            transform: scale(1.02);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .info-card h2 {
            font-size: 32px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 25px;
        }

        .info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon.rose {
            background: #ffe4e6;
        }

        .info-icon.orange {
            background: #ffedd5;
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
        }

        .info-content h3 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 5px;
        }

        .info-content p {
            color: #6b7280;
            line-height: 1.6;
        }
		
		.awards {
			width: 100%;
			height: auto;
			
		}
		.award1 {
			width:22%;
			height:14em;
			background: url("resources/award.png");
			background:contain;
			background-repeat: no-repeat;
			background-position: center;

			background-size: contain;
			padding-left: 100%;
			
		}
		.award2 {
			width:22%;
			height:14em;
		}
		.award3 {
			width:22%;
			height:14em;
		}

        .cta-card {
            background: linear-gradient(135deg, #e11d48 0%, #ea580c 100%);
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            color: white;
        }

        .cta-card h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .cta-card p {
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .cta-card button {
            width: 100%;
            background: white;
            color: #e11d48;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }

        .cta-card button:hover {
            background: #f9fafb;
        }

        /* Footer */
        footer {
			position: relative;
            background: #111827;
            color: white;
            padding: 50px 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 30px;
            text-align: center;
            color: #9ca3af;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display:flex;
				
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .section {
            display: none;
        }

        .section.active {
            display: block;
        }

        
       

/* Slideshow container */
.slideshow-container {
  position: relative;
  background: #f1f1f1f1;
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
  background: #ddd;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}

$green: #009e5f;

#product-carousel-container {
  position: relative;
  width: 50%;
  margin: auto;
}

#product-carousel {
  height: 45vw;
  margin: 50px 0 0;
  list-style: none;
  position: relative;

  li {
    position: absolute;
    left: 50%;
    top: 0;
    width: 30%;
    height: 100%;
    padding: 0;
    cursor: pointer;
    transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;

    &.item-1 {
      z-index: 2;
      transform: translateX(-50%) scale(1) translate3d(0, 0, 0);
    }

    &.item-2 {
      z-index: 1;
      transform: translateX(-50%) scale(0.7) translate3d(240%, -10%, 0);
    }

    &.item-3 {
      z-index: 0;
      transform: translateX(-50%) scale(0.5) translate3d(180%, -31%, 0);
    }

    &.item-4 {
      z-index: 0;
      transform: translateX(-50%) scale(0.5) translate3d(-180%, -31%, 0);
    }

    &.item-5 {
      z-index: 1;
      transform: translateX(-50%) scale(0.7) translate3d(-240%, -10%, 0);
    }

    &:after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      display: block;
      width: 100%;
      height: 100%;
      background: url(https://www.7up.com/images/bottle-shadow.png) no-repeat 50% 85%;
      background-size: 100% auto;
      transform: translateX(-50%);
      transition: .25s;
    }

    &:hover {
      img {
        transform: translateY(-15px);
      }

      &:after {
        width: 90%;
      }
    }

    &:not(:hover) {
      img {
        transition: transform .075s ease-out;
      }

      &:after {
        transittion: .075s;
      }
    }

    img {
      width: 100%;
      height: auto;
      margin-top: 50%;
      transition: transform .25s ease-in;
    }
  }
}

#product-carousel-nav {
  .carousel-nav {
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    border-top: 2px solid $green;
    border-right: 2px solid $green;
    border-bottom: none;
    border-left: none;
    background-color: transparent;
    outline: 0;
    cursor: pointer;

    &.prev {
      left: -35%;
      transform: rotate(-135deg);
    }

    &.next {
      right: -35%;
      transform: rotate(45deg);
    }
  }
}

#carousel-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;

  ul {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;

    li {
      display: inline-block;
      margin: 0 15px;
      width: 10px;
      height: 10px;
      background-color: #ccc;
      border-radius: 100%;
      cursor: pointer;

      .active {
        background-color: $green;
      }
    
		

