@import url(https://fonts.googleapis.com/css?family=Signika+Negative:400,700);


body{
    cursor: url('Logos/Old_English_D_Cursor_Tigers.png'), auto;
  }

/* Navbar container */
.signature-container {
    background-repeat: no-repeat;
    background-image: url('Logos/BG_Image_ANIMATED_STARS.gif'); /* Background image for the signature section */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the image */
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* Space between signature and navbar */
    box-shadow: 0 10px 0 chartreuse; /* Adds a chartreuse-colored shadow to simulate margin color */
    border-top: chartreuse 10px solid;
    padding-top: 20px;
    padding-bottom: 20px; /* Adds a chartreuse-colored shadow to simulate margin color */
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-135deg, #0f2027, #141564, #1987f4); /* Subtle gradient background */
    padding: 15px;
    font-family: 'Signika Negative', sans-serif;
    margin-bottom: 10px; /* Space between signature and navbar */
    box-shadow: 0 10px 0 chartreuse; /* Adds a chartreuse-colored shadow to simulate margin color */
}

a {
    font-family: 'Signika Negative', sans-serif;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack items vertically */
        padding: 10px;
    }

    .navbar a {
        font-size: 10px; /* Reduce font size for smaller screens */
        margin: 5px 0; /* Add spacing between stacked links */
        padding: 10px;
    }
}

/* Even for ultra-small screens */
@media (max-width: 576px) {
    .navbar {
        justify-content: flex-start; /* Align items to the left (optional) */
    }

    .navbar a {
        font-size: 12px; /* Further reduce font size */
    }
}

.navbar a {
    margin: 0 12px;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
}

/* Animated Underline */
.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: yellow;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

/* Hover Effects */
.navbar a:hover {
    color: red;
}

.navbar a:hover::before {
    width: 100%;
    left: 0;
}

/* Subtle Scaling Effect */
.navbar a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
    border-radius: 8px;
    transition: opacity 0.4s, transform 0.4s;
}

/* Hover Glow */
.navbar a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Smooth Animation when Link is Clicked */
.navbar a:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}
/* Navbar container */

* {
    margin: 0;
    padding: 0;
  }
  
  .carousel-container {
    width: 100vw; /* Full viewport width */
    overflow: hidden; /* Hide images outside the container */
}

.carousel_items {
    display: flex; /* Arrange images in a single row */
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
    transition: transform 1.5s ease-in-out; /* Smooth sliding effect */
    width: calc(100vw * 5); /* 100vw multiplied by the number of items (5 in this case) */
}

.carousel_item {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-repeat: no-repeat;
    background-size: cover; /* Image covers its container */
    background-position: center; /* Center the image */
}

/* For medium screens (e.g., tablets) */
@media (max-width: 992px) {
    .carousel_item {
        height: 70vh; /* Reduce height for better fit */
        background-size: contain; /* Adjust to maintain aspect ratio */
    }
}

/* For small screens (e.g., mobile phones) */
@media (max-width: 576px) {
    .carousel_item {
        height: 50vh; /* Further reduce height for small screens */
        background-size: contain; /* Ensure the image is scaled down */
        background-position: center;
    }
}

.carousel_item img {
    position: absolute;
    width: 100%; /* Adjust to the container width */
    height: auto; /* Maintain the original aspect ratio */
    object-fit: cover; /* Adjust how the image is fitted within the container */
}
  
  .item1 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6006.JPG");}
  .item2 {
    background-image: url("Photoshoot_2_Miggy/DSC_6632.JPG");  }
  .item3 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6095.png");  }
  .item4 {
    background-image: url("Photoshoot_2_Miggy/DSC_6406.JPG");  }
  .item5 {
    background-image: url("Photoshoot_2_Miggy/DSC_6608.JPG");  }


/* CSS for the card boxes section */
/* CSS for the card boxes section */
/* CSS for the card boxes section */


.card-boxes {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    background-image: url('HomepageAssets/Holofoil_ANIMATED.gif');
    border-bottom: chartreuse 10px solid; 
    border-top: chartreuse 10px solid;
}

.card-boxes h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-item {
    background-color: #f9f9f9;
    border: 3px solid chartreuse;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px 8px gold, 0 0 40px 16px chartreuse;
    border-color: gold;
}

/* Sparkle effect only on first hover, not continuous, and card returns to unhovered state after animation */
.card-item::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255,255,224,0.6) 0%, rgba(255,255,224,0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.card-item.sparkle::after {
    opacity: 1;
    animation: sparkle 0.8s linear;
}

@keyframes sparkle {
    0% {
        opacity: 0.7;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.3) rotate(-10deg);
    }
}

/* Card returns to unhovered state after animation ends, even if still hovered.
   This requires JS to remove the .sparkle class and the :hover effect after animation. */
.card-item:not(.sparkle):hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px 8px gold, 0 0 40px 16px chartreuse;
    border-color: gold;
}
.card-item.sparkle {
    /* Remove hover effect while sparkling */
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border-color: chartreuse !important;
}


.card-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.full-screen-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.full-screen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: auto; /* Ensures the overlay adjusts to its content */
}

.overlay p {
    color: white;
    font-size: clamp(16px, 4vw, 32px); /* Dynamically adjusts based on screen size */
    font-weight: bold;
    margin: 0;
}

.overlay span {
    font-size: clamp(18px, 5vw, 40px); /* Dynamically adjusts based on screen size */
    font-weight: bold;
    color: white; /* Ensures consistent styling */
}

@media (max-width: 768px) {
    .overlay {
        padding: 15px; /* Adjust padding for medium screens */
    }

    .overlay span {
        font-size: clamp(14px, 4vw, 36px); /* Adjust span size for medium screens */
    }
}

@media (max-width: 480px) {
    .overlay {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .overlay p {
        font-size: clamp(12px, 3vw, 24px); /* Adjust paragraph size for small screens */
    }

    .overlay span {
        font-size: clamp(4px, 1,25vw, 9px); /* Reduce span size further for small screens */
    }
}

.center-container {
    display: flex; /* Enables Flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    background-color: #f4f4f4; /* Optional background for clarity */
    border-bottom: 10px solid chartreuse;
    margin: 0;
    padding: 0;
  }

  body, html {
    margin: 0; /* Removes default body margin */
    padding: 0; /* Removes default body padding */
}

  @keyframes glowMove {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes colorPulse {
    0% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    25% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    50% {
      text-shadow: 0 0 20px chartreuse, 0 0 30px #ff4d4d, 0 0 40px #ff4d4d,
        0 0 50px #ff4d4d;
    }
    75% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    100% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
  }

  .countdown-drop {
  background-image: url('HomepageAssets/Holofoil_ANIMATED.gif');
  border-top: 10px solid chartreuse;
  border-bottom: 10px solid chartreuse;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Signika Negative', sans-serif;
  color: #fff;
  animation: glowBox 2s infinite;
}

.countdown-drop h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-shadow: 0 0 10px chartreuse, 0 0 20px #141564;
  margin-bottom: 10px;
}

.countdown-drop p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #ffd700;
}

#countdown-timer {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px #141564, 0 0 20px chartreuse;
}

@keyframes glowBox {
  0% { box-shadow: 0 0 10px chartreuse; }
  50% { box-shadow: 0 0 20px chartreuse; }
  100% { box-shadow: 0 0 10px chartreuse; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .countdown-drop {
    padding: 30px 15px;
  }

  #countdown-timer {
    font-size: 1.5rem;
  }
}

/* LISTING ITEMS */
a {
    color: chartreuse;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 100px; /* Increased left and right padding */
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.gallery-item {
    flex: 1 0 15%; /* Adjust to allow flexibility */
    text-align: center;
    margin-bottom: 10px; /* Reduced margin-bottom */
    max-width: 200px; /* Ensure images don't get too large */
}
.gallery-item img {
    width: 200px; /* Set image width to 200px */
    height: 200px; /* Set image height to 200px */
    object-fit: cover; /* Ensure images cover the container without stretching */
    display: block; /* Ensures the image behaves as a block element */
    margin-bottom: 20px; /* Adds space between the image and the description */
}
.description {
    margin-top: 5px; /* Reduced margin-top */
    font-family: Arial, sans-serif; /* Clean font */
    font-weight: bold; /* Bold text */
}

.price {
    color: chartreuse; /* Green text for price */
    font-weight: bold;
    margin-top: 5px;
    font-size: 1.5rem;
}

.description, .price {
    margin-top: 0;
    margin-bottom: 10px; /* Adjusts spacing between descriptions and prices */
}

@media (max-width: 1200px) {
    .gallery-item {
        flex: 1 0 25%; /* Adjust width to fit 4 items in a row */
    }
}
@media (max-width: 992px) {
    .gallery-item {
        flex: 1 0 30%; /* Adjust width to fit 3 items in a row */
    }
}
@media (max-width: 769px) {
    .gallery-item {
        flex: 1 0 45%; /* Adjust width to fit 2 items in a row */
    }
}
@media (max-width: 576px) {
    .gallery-item {
        flex: 1 0 100%; /* Make it full-width on very small screens */
    }
}

.popOutHover { 
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out; /* Smooth transition for the scaling and shadow */ 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 1); /* Larger and darker initial shadow */ 
} 

.popOutHover:hover { 
    transform: scale(1.1); /* Pop out effect on hover */ 
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 1); /* Larger and darker shadow on hover */ 
}

#siteseal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 18px auto 0;
}

