/* General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: hsl(0, 0%, 73%);
    background-size: 100% 100%;
    display: block;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: sans-serif;
}

.header {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.left-section,
.right-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.icon {
  width: 20px;
  height: 20px;
}

.center-section {
  text-align: center;
}

.logo {
  height: 60px;
  width: auto;
}


/* Container for Flipbook */
#container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
}

/* Flipbook Container */
#album-container {
    transition: transform 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Flipbook */
#album {
    margin-top:30px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 800px;
    height: 570px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Pages inside Flipbook */
#album > div {
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    display: block;
}

.cantact-btns-title {

    font-size: 200px;

}


/* Move Flipbook to the Left on Last Page */
.move-left {
    transform: translateX(-200px);
}

/* Next/Prev Buttons */
.button {
    width: 50px;
    height: 80px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Hover Effect */
.button:hover {
    background-color: #555;
}

/* Contact & Download Buttons */
#contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 25%;
    top: 60%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;
}

/* Move Contact Buttons to Right */
.move-right {
    opacity: 1;
}

#contact-buttons p {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

/* Button Styling */
.contact-btn {
    padding: 12px 20px;
    margin: 5px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    display: block;
    width: 180px;
    text-align: center;
    font-weight: bold;
    transition: 0.3s, transform 0.2s;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1DA851; }

/* Call Button */
.call { background-color: #007BFF; }
.call:hover { background-color: #0056b3; }

/* Email Button */
.email { background-color: #FF5733; }
.email:hover { background-color: #ff3300; }

/* Download PDF Button */
.download {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
}
.download:hover {
    background-color: #be9905;
}


/* Laptop & Large screens */
@media (max-width: 1200px) {
  .header {
    padding: 15px 20px;
  }

  .logo {
    height: 55px;
  }

  #contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 25%;
    top: 30%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;
}
}
@media (max-width: 1200px){
#contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 25%;
    top: 65%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;

}
}

@media (max-width: 1024px){
    #contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 25%;
    top: 70%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;
}

}

@media (max-width: 853px) {
    #album {
    margin-top:30px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 800px;
    height: 550px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
}

@media (max-width: 820px) {
    #album {
        width: 100%;
        max-width: 900px;
        height: 520px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    #contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 20%;
    top: 65%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;
}

}

/* Tablet: iPad */
@media (max-width: 768px) {
    .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .left-section,
  .right-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo {
    height: 50px;
  }

  #contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 20%;
    top: 60%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;
}

    #album {
        width: 100%;
        max-width: 900px;
        height: 490px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    #logo-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px; /* Adjust as needed */
        background-color: white;
        display: flex;
        align-items: center;
        padding-left: 20px; /* Adjust padding around logo */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: subtle shadow */
        z-index: 1000; /* Make sure it's above other content */
    }

    #logo {
        width: 150px;
    }

    #auks1logo-container {
        position: absolute;
        top: 90%;  /* You can reduce this if needed */
        left: 89%; /* You can reduce this if needed */
        z-index: 999; /* Ensure it stays on top */
    }

    #auks1logo {
        width: 100px;
    }
}

@media (max-width: 540px) {
    #album {
        width: 100%;
        max-width: 900px;
        height: 320px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    #contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;
}

#contact-buttons p {
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }

.contact-btn {
        padding: 2px 9px;
        margin: 8px;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-size: 12px;
        display: block;
        height: 40px;
        width: 110px;
        text-align: center;
        font-weight: bold;
        transition: 0.3s, transform 0.2s;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .info-item {
    font-size: 14px;
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  .logo {
    height: 45px;
  }

    body {
        margin-top: 20px;
        max-height: fit-content;
    }

    #album {
        width: 100%;
        max-width: 437px;
        height: 280px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    #contact-buttons p {
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }


    .contact-btn {
        padding: 2px 9px;
        margin: 8px;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-size: 12px;
        display: block;
        height: 40px;
        width: 110px;
        text-align: center;
        font-weight: bold;
        transition: 0.3s, transform 0.2s;
    }

    .button {
        width: 20px;
        height: 35px;
        font-size: 16px;
        cursor: pointer;
        border: none;
        background-color: #333;
        color: white;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #contact-buttons {
        display: none;
        text-align: center;
        position: absolute;
        right: 15%;
        top: 42%;
        transform: translateY(-50%);
        transition: opacity 0.5s ease-in-out;
    }
}

@media (max-width: 414px) {
    #album {
        width: 100%;
        max-width: 437px;
        height: 265px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 412px) {
    #album {
        width: 100%;
        max-width: 437px;
        height: 270px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 390px) {
    #album {
        width: 100%;
        max-width: 437px;
        height: 250px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 388px) {
    .contact-btn {
        width: 50%;
        height: 20px;
        padding: 3px;
        font-size: 6px;
        align-items: center;
    }

    #album {
        width: 100%;
        max-width: 325px;
        height: 230px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    #contact-buttons p {
        text-align: center;
        font-size: 12px;
        font-weight: bold;
    }


    .contact-btn {
        padding: 2px 9px;
        margin: 5px;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-size: 8.5px;
        display: block;
        height: 30px;
        width: 80px;
        text-align: center;
        font-weight: bold;
        transition: 0.3s, transform 0.2s;
    }

    .button {
        width: 20px;
        height: 35px;
        font-size: 16px;
        cursor: pointer;
        border: none;
        background-color: #333;
        color: white;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #contact-buttons {
        display: none;
        text-align: center;
        position: absolute;
        right: 15%;
        top: 52%;
        transform: translateY(-50%);
        transition: opacity 0.5s ease-in-out;
    }
}

@media (max-width: 344px) {
    #album {
        width: 100%;
        max-width: 325px;
        height: 220px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    #contact-buttons {
    display: none;
    text-align: center;
    position: absolute;
    right: 18%;
    top: 40%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease-in-out;
}
}

/* Very small mobile (e.g., 280px) */
@media (max-width: 288px) {

    .header {
    padding: 10px;
  }

  .info-item {
    font-size: 12px;
  }

  .icon {
    width: 16px;
    height: 16px;
  }

  .logo {
    height: 40px;
  }
  
    .contact-btn {
        width: 50%;
        height: 20px;
        padding: 3px;
        font-size: 6px;
        align-items: center;
    }

    #album {
        width: 100%;
        max-width: 300px;
        height: 175px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-top: 25%;
    }

    #contact-buttons p {
        text-align: center;
        font-size: 9px;
        font-weight: bold;
    }


    .contact-btn {
        padding: 0px 7px;
        margin: 4px;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-size: 7px;
        display: block;
        height: 23px;
        width: 50px;
        text-align: center;
        text-align: center;
        font-weight: bold;
        transition: 0.3s, transform 0.2s;
    }

    .button {
        width: 20px;
        height: 35px;
        font-size: 16px;
        cursor: pointer;
        border: none;
        background-color: #333;
        color: white;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #contact-buttons {
        display: none;
        text-align: center;
        position: absolute;
        right: 15%;
        top: 57%;
        transform: translateY(-50%);
        transition: opacity 0.5s ease-in-out;
    }
}