/* Styles defined for the desktop or the bigger screen devices*/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Header Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    background-image: linear-gradient(90deg, #74D7BB, #53C8B6, #35A99C);
    background-color: transparent;
    z-index:1;
}

.logo {
    padding: 0 5rem;
}

.logoimage {
    padding: 0 2rem;
}

.logo .logo-heading {
    color: #fff;
}

.menu {
    padding: 0 5rem;
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 25px;
}

.cross-icon {
    display: none;
}

.menu .menu-list {
    display: flex;
    list-style: none;
}

.menu-list .menu-list-items {
    padding: 0.5rem 1rem;
}

/* Adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .logo {
      padding: 0 1rem;
  }

  .menu {
      display: none;
  }

  .hamburger {
      display: block;
  }

  .navbar {
      justify-content: space-between;
      padding: 0 1rem;
  }
}
/* Main glass Section Styles */
/* GLASS */


.glass {
    position: relative;
    width: 40vmin;
    outline: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  
  .glass svg {
    position: relative;
    
    display: block;
    transform: translateZ(100vmin);
  }
  
  .glass .wrapper {
    position: absolute;
    left: 10.5%;
    right: 10.5%;
    top: 5%;
    bottom: -15%;
    transform: perspective(90vmin) rotateX(-30.8deg);
  }
  
  .glass .contents {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 0 25% 25% / 0 0 10% 10%;
    overflow: hidden;
  }
  
  
  /* BEER */
  .glass .beer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background-size: 100% 100%;
    animation-name: fill;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1526092/beer.png');
    /* Had to use an image for the gradient because css linear gradients don't create a smooth enough ramp between stops for my liking. */
  }
  
  .glass .surface {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    transform: scale(0);
    opacity: 1;
    animation-name: surface;
  }
  
  .glass .surface::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    padding-bottom: 15%;
    margin-top: -5%;
    border-radius: 50%;
    background: #000;
    opacity: 0.35;
  }
  
  .glass .surface::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    padding-bottom: 15%;
    margin-top: -7.5%;
    border-radius: 50%;
    background: #d39909;
  }
  
  @keyframes fill {
    0% {
      height: 0%;
    }
    100% {
      height: 89%;
    }
  }
  
  @keyframes surface {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    10%, 100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  
  /* BUBBLES */
  .glass .bubbles {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
  }
  
  .glass .bubbles .layer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10%;
    padding-bottom: 200%;
    background-size: 100% auto;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1526092/bubbles.png');
    background-repeat: repeat-y;
    -webkit-mask-image: linear-gradient(to top, transparent 20%, black 100%);
    animation-name: bubbly;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .glass .bubbles .layer.more {
    transform: rotate(180deg);
    -webkit-mask-image: linear-gradient(to bottom, transparent 40%, black 100%);
    animation-direction: reverse;
    animation-duration: 3.5s;
    opacity: 0.65;
  }
  
  @keyframes bubbly {
    from {
      background-position-y: 100%
    }
  }
  
  
  /* HEAD */
  .glass .head {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 100%;
    padding-bottom: 0%;
    opacity: 0;
    animation-name: fill-head;
    background: linear-gradient(to right, rgba(178,178,178,1) 0%,rgba(235,235,235,1) 50%,rgba(178,178,178,1) 100%);
  }
  
  .glass .head::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 15%;
    border-radius: 50%;
    margin-bottom: -7.5%;
    background: linear-gradient(to right, rgba(178,178,178,1) 0%,rgba(235,235,235,1) 50%,rgba(178,178,178,1) 100%);
  }
  
  .glass .head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-bottom: 15%;
    margin-top: -7.5%;
    border-radius: 50%;
    background: #f4f4f4;
  }
  
  @keyframes fill-head {
    0% {
      padding-bottom: 0%;
      opacity: 0;
    }
    35% {
      padding-bottom: 0%;
      opacity: 0;
    }
    45% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      padding-bottom: 20.5%;
    }
  }
  
  
  /* POUR */
  
  .pour {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 0;
    width: 0;
    opacity: 0;
    height: 200%;
    transform: translateX(-50%);
    animation-name: pour-position;
    transition: 200ms;
  }
  
  .pour .stream {
    content: "";
    position: absolute;
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(211,153,9,0) 0%,rgba(211,153,9,1) 20%,rgba(211,153,9,1) 100%);
    animation-name: pour-opacity;
  }
  
  .pour .stream::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 25%;
    border-radius: 50%;
    background: #d39909;
    transform: translateY(50%);
  }
  
  @keyframes pour-position {
    0% {
      bottom: 0;
      margin-bottom: 0%;
      height: 200%;
    }
    35% {
      margin-bottom: 0%;
    }
    100% {
      bottom: 89%;
      margin-bottom: 20.5%;
      height: 50%;
    }
  }
  
  @keyframes pour-opacity {
    0%,96% {
      opacity: 1;
      width: 100%;
    }
    100% {
      opacity: 0;
      width: 0;
    }
  }
  
  
  /* INSTRUCTIONS */
  .instructions {
    position: fixed;
    left: 50%;
    top: 50%;
    color: #fff;
    text-align: center;
    font-family: sans-serif;
    font-size: 3vmin;
    opacity: 0.5;
    text-transform: uppercase;
    transform: translate(-50%,-50%);
    transition: opacity 0.3s ease;
}

@media (pointer: fine) {
    .instructions::before {
        content: "Click ";
        
    }
}

@media (pointer: coarse) {
    .instructions::before {
        content: "Tap ";
    }
}

@keyframes instructions {
    0%, 15% {
        opacity: 0.5;
    }
    20%, 100% {
        opacity: 0;
    }
}
  
  
  /* DEFINE ANIMATION */
  
  .glass .beer,
  .glass .head,
  .glass .surface,
  .glass .pour,
  .glass .pour .stream,
  .instructions {
    animation-timing-function: cubic-bezier(.2,0,.4,1);
    animation-duration: 4s;
    animation-fill-mode: forwards;
    animation-play-state: paused;
  }
  
  
  /* ANIMATE FILL */
  @media (pointer: fine) {
    .glass:active .beer,
    .glass:active .head,
    .glass:active .surface,
    .glass:active .pour,
    .glass:active .pour .stream,
    .glass:active ~ .instructions {
      animation-play-state: running;
    }
  
    .glass:active .pour {
      width: 10%;
      opacity: 1;
    }
  }
  
  @media (pointer: coarse) {
    .glass:hover .beer,
    .glass:hover .head,
    .glass:hover .surface,
    .glass:hover .pour,
    .glass:hover .pour .stream,
    .glass:hover ~ .instructions {
      animation-play-state: running;
    }
  
    .glass:hover .pour {
      width: 10%;
      opacity: 1;
    }
  }

  canvas {
    width: 100%;
    height: 100%;
  }

/* Main Hero Section Styles */
.hero {
    
    background-repeat: no-repeat;
    background-color: black;
    background-size: 100% 100%;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4.8rem 0;
}

.hero .intro {
    text-align: center;
    margin: 0 5rem;
}

.hero .intro-buttons {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* Main Hero Section Styles */
.desc{
   
    background-repeat: no-repeat;
    background-color: rgb(193, 15, 15);
    
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}



/* About section styles */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(45deg, #363D73, #2794B3);
  justify-content: center;
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.about .about-text {
  width: 100%;
  max-width: 450px;
  color: #fff;
  padding: 1rem;
}

.about .about-image img {
  height: auto;
  width: 100%;
  max-width: 450px;
  padding: 1rem;
}

/* Portfolio section styles */
.portfolio {
  margin: 4.8rem 0;
  padding: 0 2rem;
}

.port-card {
  padding: 0 !important;
  background: none !important;
  border: 2px solid #000;
}

.port-card .image {
  width: 100%;
}

.port-card .image img {
  height: 200px;
  width: 100%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

/* Services section styles */
/* Services section styles */
.services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: .8rem auto; /* Centering the services section */
  padding: 0 5rem;
  max-width: 1200px; /* Restricting the maximum width for large screens */
  width: 100%;
}

/* Adjusting the image margins and dimensions */
.srvimage {
  margin: 1rem 0;
  width: 100%;
  max-width: 400px; /* Restricting image size */
}

/* Row adjustments for better spacing */
.my-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  padding: 1em;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Adjusting columns within the row */
.my-row .my-col {
  text-align: center;
  width: 30%;
  margin: 1rem 0;
  max-width: 300px; /* Restricting column width for large screens */
  flex-grow: 1;
  padding: 1rem;
}

/* Adjusting card styles */
.my-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-image: linear-gradient(#74D7BB, #53C8B6, #35A99C);
  padding: 2rem; /* Added padding for larger screens */
  background-size: cover;
  max-width: 100%; /* Ensure it stays within container */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adding a subtle shadow */
}

/* Icon adjustments */
.icon {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: #363D73;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon svg {
  font-size: 30px;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services {
      padding: 0 2rem;
  }

  .my-row {
      flex-direction: column;
      align-items: center;
  }

  .my-row .my-col {
      width: 100%;
      max-width: none;
      margin-bottom: 1rem;
  }
}


/* Contact section styles */
.contact {
    padding: 0 2rem;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-details {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.greet-heading {
    text-align: center;
    margin-bottom: 40px;
}

.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 20px;
}

.contact-heading {
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-text {
    margin-bottom: 5px;
}

.contact-details > .details {
    flex: 1;
}

.contact-details {
    display: flex;
    justify-content: space-between;
}

/* send messagesection styles */
/* Section Styling */
.sendmessage {
    padding: 50px;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

/* Heading Styles */
.sendmessage-heading .att-heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Form Container */
.sendmessage-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Heading */
.sendmessage-form-container .greet-heading {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* Form Controls */
.form-controls {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Textarea */
textarea.form-controls {
    height: 150px;
    resize: vertical;
}

/* Service Options Styling */
.form-services {
    margin: 20px 0;
}

.service-option {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-left: 30px;
}

.service-option input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Submit Button */
.form-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sendmessage-form-container {
        padding: 15px;
    }

    .form-controls {
        padding: 8px;
        font-size: 14px;
    }

    .form-btn {
        padding: 8px 16px;
        font-size: 16px;
    }
}
/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 2rem;
}

.footer-list-items {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    margin: 1rem 1rem 0 1rem;
    border-radius: 50%;
    background-color: #53C8B6;
}

.footer-links {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu {
    padding: 0 5rem;
}

.footer-menu .footer-menu-list {
    display: flex;
    list-style: none;
}






/* utility classes */


.my-heading {
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
    
}

.att-heading {
    font-size: 2.5rem;
    margin: 0;
    margin-top: 10%;
    text-align: center;
}
.sub-heading {
    margin: 0;
    font-size: 0.8rem;
    color: #ccc;
    font-weight: lighter;
}

.links:hover {
    border-bottom: 2px solid #fff;
}

.links {
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    padding: 5px;
    text-decoration: none;
    color: #fff;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
    border: none;
}

.common-btn {
    background-color: #35A99C;
    color: #fff;
    border: 2px solid #35A99C;
    transition: all 0.25s;
}

.common-btn:hover {
    background-color: #fff;
    color: #35A99C;
    border: 2px solid #35A99C;
    outline: none;
}

.ghost-btn {
    background-color: #fff;
    color: #35A99C;
    border: 2px solid #35A99C;
    outline: none;
}

.ghost-btn:hover {
    background-color: #35A99C;
    color: #fff;
    transition: all 0.25s;
    border: 2px solid #35A99C;
}

.heading-span {
    font-weight: bolder;
}

.text-center {
    text-align: center;
}

.small-para {
    font-size: 14px;
    color: #fff;
}

.white-text {
    color: #fff;
}

.blue-text {
    color: #363D73;
}
