/* ------------------------- */
/*       GLOBAL STYLES       */
/* ------------------------- */

@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,600&display=swap');

/* Make the canvas be the page background */
html, body { height: 100%; }
canvas#starry {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;      /* behind content */
  background: #0c082b; /* optional: pure black space */
}

/* Make canvas cover the entire background */
canvas#starry {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Push canvas behind all content */
    width: 100%;
    height: 100%;
    background: #0c082b; /* fallback background color */
}

h1, h2, #service-title, label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Animated gradient background */
body {
    background: linear-gradient(-45deg, #e0e0e0, #f3f3f3, #ebebeb, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* --------------------------- */
/*  COOKING CONTAINER STYLING  */
/* --------------------------- */

.cooking-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-height: 80vh;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out;
}

.cooking-container:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------- */
/*    DROPDOWN CONTAINER       */
/* --------------------------- */

.dropdown-container {
    margin-right: 20px;
    position: relative;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.dropdown-container:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Label styling */
label {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #1a3e8c;
    margin-bottom: 8px;
    display: block;
    font-weight: bold;
}

/* --------------------------- */
/*       SELECT ELEMENT        */
/* --------------------------- */

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(to right, #fefefe, #f1f1f1);
    border: 1px solid #1a3e8c;
    color: #333;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:hover {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

select:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

select::-ms-expand {
    display: none;
}

/* --------------------------- */
/*      SERVICE INFO BOX       */
/* --------------------------- */

.service-info {
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #f7f7f7);
    border-radius: 16px;
    border: 1px solid #1a3e8c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    animation: fadeUp 0.6s ease-out;
}

.service-info:hover {
    transform: perspective(600px) rotateX(3deg) rotateY(-3deg) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#service-title {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

#service-details {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}

/* --------------------------- */
/*        BOOK BUTTON          */
/* --------------------------- */

.book-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.book-button:hover {
    background: linear-gradient(to right, #0056b3, #003f8c);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* --------------------------- */
/*        MINIMAL FOOTER       */
/* --------------------------- */

.minimal-footer {
    background: linear-gradient(to right, #000000, #132852);
    padding: 20px 0;
    text-align: center;
    animation: fadeFooter 0.8s ease-out;
}

@keyframes fadeFooter {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.minimal-footer a {
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin: 0 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* --------------------------- */
/*         HIDDEN CLASS        */
/* --------------------------- */

.hidden {
    display: none;
}

/* --------------------------- */
/*        FAQ / DISCLAIMER     */
/* --------------------------- */

.faq-box {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border: 1px solid #1a3e8c;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #1a3e8c;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
}

.faq-box h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a3e8c;
    margin-bottom: 10px;
}

.faq-box p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* --------------------------- */
/*  DYNAMIC SERVICE CONTENT    */
/* --------------------------- */

.dynamic-service-content {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border: 1px solid #1a3e8c;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Grid layout for image/video presentations */
.service-presentation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.service-presentation-item {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.service-presentation-item img,
.service-presentation-item video {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.presentation-text h4 {
    margin: 0;
    font-size: 18px;
    color: #007bff;
}

.presentation-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #333;
}
