/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Cormorant Garamond", serif;
  
}

body{
    background-image: url(family6-transformed.jpeg);
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from tiling */
  
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: white;
    color: black;
  }
}

@media screen and (max-width: 1180px) {
    body {

        background-image: url(family9-transformed.jpeg);
        background-size: cover; /* Ensures the image covers the entire container */
        background-position: center; /* Centers the image */
        background-repeat: no-repeat; /* Prevents the image from tiling */
       
}

}

.container {
  display: flex;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

#border{
    /* border: 1px solid black; */
    /* box-shadow: #01bbef 0px 1px 2px 0px, #ff77006f 0px 1px 3px 1px; */
    box-shadow: rgba(228, 228, 228, 0.25) 0px 50px 100px -20px, rgba(239, 239, 239, 0.3) 0px 30px 60px -30px, rgba(184, 214, 245, 0.35) 0px -2px 6px 0px inset;
    border-radius: 10px;
    background-color: #00000077;
    padding: 15px;
}


@media screen and (max-width: 1180px) {
 
#border{
    /* border: 1px solid black; */
    box-shadow: none;
    width: 95%;
    background-color: #000000a8;
    padding: 20px;
    box-shadow: 0 26px 58px 0 rgba(0, 0, 0, .22), 0 5px 14px 0 rgba(0, 0, 0, .18);
   
}
}
/* .container .image {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    /* /* opacity: 0.2;  */
    /* filter: blur(4px); Adjust the blur level 
  } */

 
  
body::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  /* background: linear-gradient(to top, #000000, #000000); */
  z-index: -1;
  opacity: 0.3;
}
.container header {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.container p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
}
/* .container .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
  margin: 2rem;
  border: 1px solid white;
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
  background: rgba(250, 250, 250, 0.2);
} */

.container .time-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 30px;
    align-items: center;
    margin: 2rem;
    /* border: 1px solid #01BAEF; */
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    /* background: rgba(250, 250, 250, 0.2); */
    box-shadow: #01bbef 0px 1px 2px 0px, #ff77006f 0px 1px 3px 1px;
  }
  
  
  @media (min-width: 768px) {
    .time-content {
      flex-wrap: nowrap;
      padding: 2rem 2.5rem;
    }
  
    .time .number {
      font-size: 80px;
    }
  }

  header .logo {
    width: clamp(100px, 50vw, 400px); /* Minimum 100px, responsive up to 10vw, and max 200px */
    height: auto; /* Maintains aspect ratio */
}


.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.time .number {
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: #eee;
}
.time .text {
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

.email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.email-content p {
  font-size: 13px;
}
.input-box {
  display: flex;
  align-items: center;
  height: 40px;
  max-width: 360px;
  width: 100%;
  margin-top: 20px;
  column-gap: 20px;
}
.input-box input,
.input-box button {
  height: 100%;
  outline: none;
  border: none;
  /* border: 1px solid #01BAEF; */
  border-radius: 4px;
  
  font-weight: 400;
  box-shadow: #01bbef 0px 1px 2px 0px, #ff77006f 0px 1px 3px 1px;
}
.input-box input {
  width: 100%;
  padding: 0 15px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
}
input::placeholder {
  color: #fff;
}
.input-box button {
  cursor: pointer;
  background-color: #01bbef71;
  color: #ffffff;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease;
  /* box-shadow: #01bbef60 0px 1px 2px 0px, #ff770050 0px 1px 3px 1px; */
}
.input-box button:hover {
  background-color: #FF7700;
  border: #FF7700;
  color: #eee;
  box-shadow: rgba(213, 213, 213, 0.657) 0px 25px 20px -20px;
}

@media screen and (max-width: 480px) {
  .container header {
    font-size: 50px;
  }
}

  .social-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid black; */
    /* max-width: 360px; */
  }
  .social-btn {
    list-style: none;
    width: 60px;
    height: 60px;
    /* background: #ffffff2a; */
    margin: 15px;
    border-radius: 30%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 10px 10px -5px rgb(255,255,255,0.1); */
    transition: all 0.3s;
    z-index: 10px;
    box-shadow: #01bbef 0px 1px 2px 0px, #ff77006f 0px 1px 3px 1px;
  }
  .social-btn a {
    text-decoration: none;
    color: #fff;
  }
  .social-btn:hover a {
    color: #fff;
  }
  .social-menu .social-btn::before {
    content: attr(tooltip);
    position: absolute;
    top: 0;
    font-size: 0.9em;
    font-weight: bold;
    z-index: -1;
    opacity: 0;
    pointer-events: auto;
    background: #fff;
    padding: 10px;
    /* color: #000; */
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
  }
  .social-menu .social-btn::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 0;
    opacity: 0;
    background: #fff;
    transform: rotate(45deg);
    left: 20%;
    z-index: -2;
    transition: 
      all 0.3s ease-out;
  }
  .social-menu .social-btn:hover::before {
    top: -45px;
    opacity: 1;
  }
  .social-btn:hover::after {
    top: -12px;
    opacity: 1;
  }
  .facebook a {
    color: #0954f5;
  }
  .facebook:hover,
  .facebook:hover .social-btn:before,
  .facebook:hover .social-btn:after {
    background: #3b5999;
  }
  .instagram a {
    color: #E1306C;
  }
  .instagram:hover,
  .instagram:hover .social-btn:before,
  .instagram:hover .social-btn:after {
    background: #E1306C;
  }
 
  .whatsapp a {
    color: #10de21;
  }
  .whatsapp:hover,
  .whatsapp:hover .social-btn:before,
  .whatsapp:hover .social-btn:after {
    background: #51e40d;
  }

  .container p a{
    font-size: 16px;
    font-weight: 400;
    color: #05ffe2;
    max-width: 550px;
    text-align: center;
  }