@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Righteous&family=Secular+One&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
:root {
  --primary:  rgb(149, 52, 13);
  --secondary: rgb(15, 24, 124);
  --dark:  rgb(6, 16, 60);
  --bg-color: #ffffff;
  --hover-bg: #f1f5f9; 
  --light: #f8f9fa;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  background-color: #ffffff;
  font-family: "Caveat", sans-serif;
}

.nav {
  font-family: "montserrat";
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: white;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 600;
  width: 70px;
  height: 70px;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  color: var(--primary);
  text-decoration: none;
  padding: 0.5rem;

}

.nav__link:hover {
  font-weight: bold;
  color: var(--secondary);
  border-bottom: 2px solid var(--primary);
}


.nav__hamburger {
  display: none;
  color: var(--primary);
  font-size: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
}


@media (max-width: 768px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav__links--active {
    max-height: 1000px;
    padding: 1rem;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .nav__hamburger {
    display: block;
    order: 1;
  }
  .nav__logo {
    font-size: 1.25rem;
    font-weight: 600;
    width: 70px;
    height: 70px;
  }

}
img {
  width: 100%;
  pointer-events: none;
  user-select: none;
}

/* SECTION - HOME */

.home {
  display: grid;
  grid-template-columns: 45% 50%;
  place-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 60px 80px;
}

.description {
  color: #445493;

}

.description h1 {
  font-family: "Caveat";
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 30px;
}

.gradient-text {
  font-family: "Montserrat", sans-serif;
  background-image: linear-gradient(
    90deg,
    rgb(149, 52, 13) 0%,
    rgb(165, 109, 86) 40%,
    rgb(15, 24, 124) 50%,
    rgb(68, 84, 147) 70%,
    rgb(6, 16, 60) 100%
  );

  color: transparent;
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;
}

.description p {
  font-family: "montserrat", sans-serif;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  line-height: 1.5;
  margin-bottom: 30px;
  color: #a56d56;
}

#form {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.users-color-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.item {
  max-width: 200px;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s linear 1 forwards;
  animation-delay: calc(0.2s * var(--i));
  opacity: 0;
}

.item:nth-child(1) {
  background-color: #95340d;
  border-radius: 50% 50% 0 50%;
}

.item:nth-child(2) {
  border-radius: 50% 50% 0 0;
}

.item:nth-child(3) {
  background-color: #445493;
  border-radius: 50%;
}

.item:nth-child(4) {
  border-radius: 0 0 0 50%;
}

.item:nth-child(5) {
  border-radius: 0 50% 50% 0;
}

.item:nth-child(6) {
  background-color: #0f187c;
  border-radius: 0 50% 50% 50%;
}

.item:nth-child(7) {
  border-radius: 50% 50% 0 50%;
}

.item:nth-child(8) {
  background-color: #a56d56;
  border-radius: 50% 0 0 50%;
}

.item:nth-child(9) {
  background-color: #445493;
  border-radius: 0 50% 50% 0;
}

.item:nth-child(10) {
  border-radius: 50%;
}

.item:nth-child(11) {
  background-color: #95340d;
  border-radius: 50% 0 50% 50%;
}

.item:nth-child(12) {
  border-radius: 50% 0 0 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 865px) {
  .home {
    grid-template-columns: 45% 50%;
    gap: 60px;
    padding: 130px 70px;
  }

  .users-color-container {
    gap: 15px;
  }
}

@media (max-width: 815px) {
  .home {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "userscolorcontainer"
      "description";
    gap: 30px;
    padding: 20px 80px 70px;
  }

  .users-color-container {
    grid-area: userscolorcontainer;
    gap: 20px;
  }

  .description {
    grid-area: description;
    padding: 0;
    text-align: center;
  }

  #form {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .home {
    gap: 0;
    padding: 10px 40px;
  }

  #form {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
  }

  input[type="email"]:focus {
    outline-offset: 6px;
  }
}
.cc__container {
  font-family: "monteserrat";
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  font-family: "Montserrat", sans-serif;
  width: 1000px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.container .card {
  position: relative;
  cursor: pointer;
}

.container .card .face {
  width: 300px;
  height: 200px;
  transition: 0.5s;
}

.container .card .face.face1 {
  position: relative;
  background: #95340d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border-radius: 30% 0 0 0;
  transform: translateY(100px);
}

.container .card:hover .face.face1 {
  background: #0f187c;
  transform: translateY(0);
}

.container .card .face.face1 .content {
  opacity: 0.2;
  transition: 0.5s;
}

.container .card:hover .face.face1 .content {
  opacity: 1;
}

.container .card .face.face1 .content img {
  max-width: 100px;
}

.container .card .face.face1 .content h3 {
  margin: 10px 0 0;
  padding: 0;
  color: #fff;
  text-align: center;
  font-size: 1.5em;
  font-weight: 300;
}

.container .card .face.face2 {
  position: relative;
  background: #fff;
  display: flex;
  border-radius: 30% 0 0 0;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(-100px);
}
.container .card .face.face2 p{
  font-size: 15px;
}
.container .card:hover .face.face2 {
  transform: translateY(0);
  border-radius: 0 0 0 0;
}

.container .card .face.face2 .content p {
  margin: 0;
  padding: 0;
}

.container .card .face.face2 .content a {
  margin: 15px 0 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 5px;
  border: 1px solid #333;
}

.container .card .face.face2 .content a:hover {
  background: #333;
  color: #fff;
}
/* Add these styles to your CSS */
.cc__container {
  font-family: "Montserrat", sans-serif;
  flex-direction: column;
  padding: 4rem 0;
}

.cc__header {
  font-size: 50px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.cc__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  color: #0f187c;
  margin-bottom: 1rem;
}

.cc__subtitle {
  font-family: "montserrat", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #a56d56;
  line-height: 1.6;
}

/* Update existing container styles */
.cc__container .container {
  width: 100%;

  padding: 0 20px;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.cc__container .card {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  margin: 1rem;
  align-items: center;
  justify-content: center;
}

.content a {
  font-family: "Caveat";
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .cc__container .container {
    align-items: center;
  }

  .cc__container .card {
    width: 100%;
    /* max-width: 400px; */
  }

  .cc__header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .cc__container {
    padding: 2rem 0;
  }

  .cc__container .card .face {
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  .cc__container .card .face.face1 {
    transform: translateY(0);
  }

  .cc__container .card .face.face2 {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .cc__container .card:hover .face.face1 {
    transform: translateY(0);
  }
}
/* Updated CSS */
.random-boxes {
  padding: 6rem 0;
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.boxes-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 3rem);
  color: #0f187c;
  margin-bottom: 1.5rem;
}

.section-description {
  font-family: "Caveat", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #a56d56;
  line-height: 1.4;
}



#intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 40px;
  min-height: 100dvh;
  overflow: hidden;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 50px;
}

.info h1 {
 color: #445493;

  font-size: 3rem;
}

.info p {
  font-family: "Montserrat";
  color: #a56d56;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.split-beer {
  display: flex;
  flex-direction: row;
}

.ship {
  max-width: 100%;
  width: 250px;
  border-radius: 20px;
  margin-left: 15px;
  border: 2px solid #0f187c;
}

.ship:nth-child(2) {
  transform: translateY(-1.5rem);
}



@media (max-width: 1100px) {
  .ship {
    width: 200px;
  }

  #content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  #intro {
    padding: 30px;
  }

  .ship {
    width: 150px;
  }

  .info {
    gap: 20px;
    padding: 30px 30px;
  }

  .info h1 {
text-align: center;
    font-size: 2.5rem;
  }

  .info p {
    font-size: 1rem;
  }

  #content {
    gap: 30px;
    padding: 60px 20px;
  }

  .card {
    width: 250px;
  }

  .modal-content {
    width: 80%;
  }

  footer {
    padding: 20px 80px 60px;
  }

  footer > p {
    font-size: 1.1rem;
  }
}

@media (max-width: 550px) {
  #intro {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "split-beer"
      "info";
  }

  .info {
    grid-area: info;
  }

  .split-beer {
    grid-area: split-beer;
    margin: 20px auto;
  }

  .ship {
    width: 100px;
  }


}
.site-footer {
  font-family: "Montserrat";
  background: #95340d;
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: white;
}

.footer-text {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  text-decoration: none;
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #a56d56;
  transform: translateY(-3px);
}

.footer-links li {
  list-style: none; /* Add this line */
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a56d56;
}

.contact-info li {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #cccccc;
}

.contact-info i {
  margin-right: 1rem;
  color: #a56d56;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.copyright {
  color: #cccccc;
  font-size: 0.9rem;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0f187c;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .social-links {
      justify-content: center;
  }

  .contact-info li {
      justify-content: center;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }}
  .schedule-section {
    padding: 4rem 1rem;
    background-color: var(--primary-beige);
    position: relative;
  }
  
  /* Schedule Heading */
  .schedule-section h2 {
    font-weight: bold;
    font-family:"Montserrat";
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 3rem; /* Increased space below heading */
    color: #0f187c;
    position: relative;
    z-index: 999;
  }
  
  /* Timeline Container */
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16rem 0;
  }
  
  /* Vertical line for mobile */
  .timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #0f187c;
    display: none;
  }
  
  /* Horizontal timeline for desktop */
  .timeline {
    display: flex;
    justify-content: space-between;
  }
  
  .timeline::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #0f187c;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  
  .timeline-item {
    opacity: 1;
    
      transition: all 0.5s ease;
    position: relative;
    flex: 1;
    max-width: 200px;
    z-index: 1;
    margin: 0 15px;
  }
  .schedule-section.active .timeline-item {
    animation: itemAppear 0.6s ease forwards;
  }
  
  /* Staggered animation delays */
  .schedule-section.active .timeline-item:nth-child(1) { animation-delay: 0.2s; }
  .schedule-section.active .timeline-item:nth-child(2) { animation-delay: 0.4s; }
  .schedule-section.active .timeline-item:nth-child(3) { animation-delay: 0.6s; }
  .schedule-section.active .timeline-item:nth-child(4) { animation-delay: 0.8s; }
  .schedule-section.active .timeline-item:nth-child(5) { animation-delay: 1.0s; }
  .schedule-section.active .timeline-item:nth-child(6) { animation-delay: 1.2s; }
  
  @keyframes itemAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  .timeline-point {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #0f187c;
    border: 3px solid #0f187c;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .timeline-content {
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 30% 0 30% 0;
    border: 3px solid #95340d;
    color: #445493;
    width: 200px;
    margin: 0 auto;
  }
  
  .timeline-content h3 {
    color: #0f187c;
    font-weight: bold;
    font-family: "Montserrat";
  }
  
  .timeline-time {
    font-size: 22px;
    color: #a56d56;
  }
  
  .timeline-place {
    color: var(--primary-orange);
  }
  
  /* Alternate content position */
  .timeline-item:nth-child(odd) .timeline-content {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-point {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Mobile Responsive Styles */
  @media (max-width: 768px) {
    .schedule-section h2 {
      margin-bottom: 2rem; /* Maintain space on mobile */
    }
    .timeline {
      flex-direction: column;
      padding: 20px 0;
    }
  
    .timeline::after {
      display: none;
    }
  
    .timeline::before {
      display: block;
    }
  
    .timeline-item {
      width: 100%;
      max-width: none;
      margin: 40px 0;
      padding-left: 50px;
    }
  
    .timeline-point {
      left: 18px;
      top: 20px;
      transform: translate(0, 0);
    }
  
    .timeline-content {
      text-align: start;
      position: static;
      width: auto;
      transform: none;
      margin: 0 0 0 30px;
      top: auto;
      bottom: auto;
    }
  
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
      position: relative;
      top: auto;
      bottom: auto;
      left: auto;
      transform: none;
    }
  }
       .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background:#95340d; 
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-button:hover {
        background: #822c0a;
        transform: scale(1.1);
    }

    .whatsapp-icon {
        font-size: 32px;
    }

    /* Pulse animation */
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(149, 52, 13,0.4); }
        70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    .pulse-animation {
        animation: pulse 2s infinite;
    }
    .footer__links{
      text-decoration: none;
      color: #f8f9fa;
    }
    .footer__links:hover{
      text-decoration: none;
      color: #a56d56;
    }
    .shipping-section {
      padding: 3rem 1rem;
  
      background-size: cover;
      background-position: center;
   color: #0f187c;
  }
  
  .shipping-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .section-header {
      text-align: center;
      margin-bottom: 4rem;
  }
  
  .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
  }
  
  .section-header p {
    color: #822c0a;
    font-family: "montserrat", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
  .shipping-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
  }
  
  .shipping-card {
    box-shadow: var(--shadow);
      background: rgba(255,255,255,0.4);
      border-radius: 15px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
  }
  
  .shipping-card:hover {
      transform: translateY(-10px);
  }
  
  .card-image {
      height: 250px;
      overflow: hidden;
  }
  
  .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }
  
  .shipping-card:hover .card-image img {
      transform: scale(1.1);
  }
  
  .card-content {
      background:#822c0ad3;
      padding: 2rem;  
      font-family: "montserrat";
      color: #fff;
  }
  
  .icon-container {
      width: 60px;
      height: 60px;
      background: #445493a0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -30px auto 1.5rem;
      font-size: 1.5rem;
  }
  .icon-container i{
    color: #0f187c;
  }
  .shipping-features {
      list-style: none;
      padding: 0;
    
  }
  
  .shipping-features li {
      margin-bottom: 0.8rem;
      display: flex;
      
      align-items: center;
      gap: 0.5rem;
  }
  
  .shipping-cta {
      text-align: center;
      padding: 3rem;
      background: rgba(199,0,57,0.2);
      border-radius: 15px;
  }
  
  
  @media (max-width: 768px) {
      .section-header h2 {
          font-size: 2rem;
      }
      
      .card-image {
          height: 200px;
      }
  }