@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f6f8fa;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    text-align: center;
    align-items: center;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: #ffffff;
}

.navbar li {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.navbar li:hover {
    color: rgb(48, 47, 47);
}

.navbar h1{
    cursor: pointer;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 35px;
    font-size: 25px;
    margin-top: 60px;
}

.main h3 {
    font-family: "Kaushan Script", cursive;
    font-size: 50px;
}

.main p {
    line-height: 25px;
    font-size: 20px;
}

.navbar ul {
    list-style: none;
}

.navbar h1 , .blue-Color{
    color: #0090fe;
}

.countdown {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.days, .hours, .seconds, .minutes {
    width: 110px;
    height: 110px;
    background-color: #ffffff;
    color: black;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;

    /* 3D shadow */
    box-shadow:
        0 4px 6px rgba(190, 190, 190, 0.1),   /* soft drop shadow */
        0 8px 15px rgba(190, 190, 190, 0.1);  /* deeper shadow for 3D effect */

    /* Optional: lift on hover */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.days:hover, .hours:hover, .seconds:hover, .minutes:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.15),
        0 12px 20px rgba(0, 0, 0, 0.1);
}

.number {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

.label {
    font-size: 23px;
    margin-top: 4px;
}

.email {
    display: flex; 
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-top: 30px;
    height: 50px;
    width: fit-content;
}

.email-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.email-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 0 12px;
}

.send-button {
    background-color: #0090fe;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #007bd4;
}

.social-media {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 50px;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #888;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background-color: #e1306c; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.linkedin { background-color: #0077b5; }

.social-icon:hover {
  opacity: 0.8;
}
