@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Macondo&family=Montserrat:ital,wght@0,300;0,400;0,600;1,300&display=swap');

@charset "utf-8";

/* CSS Document */


/* --- S7 EDGE GLASS SCREEN EFFECT --- */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  
  /* 
     S7 Edge Profile: The canvas stays pure bright white for 94% of the screen, 
     then aggressively rolls off into a dark glass shadow right at the absolute edges.
  */
  background: linear-gradient(
    to right, 
    #111111 0%,    /* Crisp black outer bezel edge */
    #cecece 2%,    /* Ultra-fast shadow transition curve */
    #ffffff 6%,    /* Snaps directly to pure bright white */
    #ffffff 94%,   /* Stays perfectly flat white across the entire main layout */
    #cecece 98%,   /* Ultra-fast shadow transition curve */
    #111111 100%   /* Crisp black outer bezel edge */
  ) !important;
  
  background-attachment: fixed !important;
}


/* Force the clean font onto the entire website body and forms */
body, p, input, textarea, button, ul, li, a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300; /* Keeps paragraph text crisp and light */
    line-height: 1.6;  /* Adds comfortable spacing between lines of text */
}


/* Force the gorgeous script font onto your titles and section headers */
/* --- HEADINGS CUSTOM SIZE & STYLES --- */
h1 {
    font-family: 'Macondo', cursive !important;
    font-weight: bold !important;
    font-size: 42px !important; /* Adjust this to make the main top title bigger or smaller */
    letter-spacing: 0.5px;
}

h2 {
    font-family: 'Macondo', cursive !important;
    font-weight: bold !important;
    font-size: 32px !important; /* Controls sections like "Our Mobile Disco Highlights" */
    letter-spacing: 0.5px;
}

h3 {
    font-family: 'Macondo', cursive !important;
    font-weight: bold !important;
    font-size: 24px !important; /* Controls individual card headings */
    letter-spacing: 0.5px;
}


/* If you want to make important sentences or labels stand out */
strong {
    font-weight: 600;
}


/* Change fade-up duration default */
[data-aos="fade-up"] {
    transition-duration: 1200ms !important;
}


/* Change easing */
[data-aos] {
    transition-timing-function: ease-out !important;
}


.top-background {
    position: fixed;   /* stays in place even on scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;     /* adjust height as needed */
    background: url('images/top-background.jpg') center/cover no-repeat;
    z-index: -1;       /* behind everything */
}


section {
  padding: 80px 20px;
  text-align: center;
}


.hero {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: white;

  /* Background image */
  background: url('images/top-background.jpg') center top / cover no-repeat;
  background: #333;
  color: #fff;
}


.hero img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}


.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


.service-card {
  flex: 0 1 300px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}


.service-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}


.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}


.portfolio-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}


.portfoliob {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}


.portfolio-itemb img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}


.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}


.contact input, .contact textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
}


.contact button {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}


#formMessage {
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    display: none;
    font-weight: bold;
}


#formMessage.success {
    background-color: #d4edda;
    border: 1px solid #4CAF50;
    color: #155724;
}


#formMessage.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}


/* Apply a soft, subtle drop shadow to all images across the site */
.service-card img, 
.portfolio-item img, 
.portfolio-itemb img {
    box-shadow: 0px 18px 25px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease; /* Makes it smooth if you want a hover effect later */
} 


/* --- HOVER FLOATING & LIFT EFFECT --- */

/* 1. Tell the browser to prepare for smooth movement */
.portfolio-item, 
.portfolio-itemb {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* 2. Gently lift the photo framework up 8 pixels when hovered */
.portfolio-item:hover, 
.portfolio-itemb:hover {
    transform: translateY(-8px) !important; 
}

/* 3. Deepen the shadow underneath the images when lifted */
.portfolio-item img, 
.portfolio-itemb img {
    transition: box-shadow 0.4s ease !important;
}

.portfolio-item:hover img, 
.portfolio-itemb:hover img {
    box-shadow: 0px 28px 40px rgba(0, 0, 0, 0.75) !important;
}


/* --- PREMIUM SERVICES BACKGROUND & GLASS EFFECT --- */

/* 1. Give the background area behind the cards a rich dark texture to make glass pop */
.services {
    background: linear-gradient(rgba(30, 30, 30, 0.85), rgba(30, 30, 30, 0.85)), 
                url('images/danceleft.png') center/cover no-repeat fixed !important;
    padding: 60px 20px !important;
    border-radius: 16px;
    margin: 40px auto;
    max-width: 1200px;
}

/* 2. The High-End Frosted Glass Cards */
.services .service-card {
    background: rgba(255, 255, 255, 0.12) !important; /* Crystal clear white transparency */
    backdrop-filter: blur(15px) !important;           /* Deep camera-lens blur */
    -webkit-backdrop-filter: blur(15px) !important;   /* Apple Safari support */
    border: 1px solid rgba(255, 255, 255, 0.25) !important; /* Brilliant polished edge */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;  /* Soft floating drop shadow */
    padding: 25px;
    border-radius: 12px;
}

/* 3. Turn text to crisp white so it gleams on the dark glass */
.services .service-card h3 {
    color: #00d2ff !important; /* Vibrant neon cyan heading */
    font-size: 26px !important;
}

.services .service-card p,
.services .service-card li {
    color: #ffffff !important; /* Crisp white body text */
}

.services .service-card a {
    color: #00d2ff !important;
    text-decoration: underline;
}


/* --- PREMIUM FIXED WHITE SCROLL INDICATOR --- */

.scroll-down-mouse {
    position: fixed; /* Locks it to the user's screen layout */
    bottom: 40px;    /* Pins it perfectly near the bottom of the screen over the hero */
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 2px solid #ffffff !important; /* Brilliant white outline */
    border-radius: 20px;
    z-index: 9999 !important; /* Forces it above every single layer on your site */
    
    /* Animation: Wait for page load, smoothly fade in */
    opacity: 0;
    transition: opacity 0.4s ease; /* Allows smooth fade-out when scrolling */
    animation: mouseFadeIn 1s ease-out 0.8s forwards;
}

.scroll-down-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #ffffff !important; /* Brilliant white wheel */
    border-radius: 2px;
    animation: mouseScrollWheel 1.6s ease-in-out infinite;
}

/* Page-Load Fade-In */
@keyframes mouseFadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.9; }
}

/* Bouncing Scroll Wheel Loop */
@keyframes mouseScrollWheel {
    0% { top: 8px; opacity: 0; }
    20% { opacity: 1; }
    60% { top: 18px; opacity: 0; }
    100% { top: 8px; opacity: 0; }
}

/* Class to cleanly hide the mouse on scroll */
.scroll-down-mouse.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.corner-disco-ball {
    position: fixed;       /* Keeps it locked in place even when scrolling */
    top: -50px;            /* Slightly tucks it into the top edge */
    left: -50px;           /* Tucks it cleanly into the left corner */
    width: 120px;          /* Adjust size to fit your design nicely */
    height: auto;
    z-index: 9999;         /* Forces it to sit on top of everything else */
    pointer-events: none;  /* Makes it "ghostly" so people can click links underneath it */
}


/* ==========================================================================
   CUSTOM PHOTOGRAPHY OVERRIDES (FORCING WHITE TEXT & EXTRA WIDTH)
   ========================================================================== */

/* 1. Force the container wrapper to stretch out beautifully */
/* 1. Force the container wrapper to stretch out beautifully */
.services .service-card {
    flex: 1 1 850px !important;  /* CRUCIAL: This breaks the 300px limit and lets it expand! */
    max-width: 850px !important; 
    width: 100% !important;
    padding: 35px !important;    
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

/* 2. Force the top heading text to be pure white and remove default underlines */
.services .service-card h3,
.services .service-card a h3,
.services .service-card a {
    color: #ffffff !important;         /* Direct white override */
    text-decoration: none !important;  /* Strip standard browser lines */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

/* 3. Optional: Add a smooth accent shift when someone hovers over the header link */
.services .service-card a:hover h3 {
    color: #00f2fe !important;         /* Shifts cleanly to premium neon teal on hover */
}

/* 4. Force the intro paragraph description to be solid, readable white */
.services .service-card p.card-intro {
    color: #ffffff !important;         /* Changes the faint text to crisp white */
    font-size: 1.1rem !important;
    font-style: italic !important;
    margin-bottom: 25px !important;
    text-align: center !important;     /* Centers the main headline phrase nicely */
}

/* 5. Tweak the list item text boundaries for modern reading ergonomics */
.services .service-card .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.services .service-card .benefit-list li {
    color: #f0f0f0 !important;         /* Bright, highly legible gray-white for points */
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 14px !important;
    padding-left: 5px;
}

/* 6. Keep the custom bold item tags looking beautifully vivid */
.services .service-card .benefit-list strong {
    color: #00f2fe !important;         /* Vibrant modern neon teal-cyan highlight labels */
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media screen and (max-width: 600px) {
    .services .service-card {
        padding: 15px !important;    /* Shrinks huge desktop padding so text doesn't look squished */
        border-radius: 8px !important;
    }
    
    .services .service-card p.card-intro {
        font-size: 1rem !important;  /* Marginally sizes down text for phone viewports */
    }
    
    .services .service-card .benefit-list li {
        font-size: 0.9rem !important; 
        margin-bottom: 12px !important;
    }
}



/* --- PORTFOLIO FROSTED GLASS TILE (GREY VERSION) --- */
.portfolio-glass-card {
    background: rgba(30, 30, 30, 0.75) !important; /* Rich charcoal transparency instead of white */
    backdrop-filter: blur(15px) !important;           
    -webkit-backdrop-filter: blur(15px) !important;   
    border: 1px solid rgba(255, 255, 255, 0.15) !important; /* Subtle polished glass edge */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;  
    padding: 40px 30px !important;
    border-radius: 16px !important;
    max-width: 1100px !important;                     
    width: 100% !important;
    margin: 0 auto !important;                        
    box-sizing: border-box !important;
}

/* Force header text to look pristine on the dark glass */
.portfolio-glass-card .portfolio-header h2 {
    color: #ffffff !important;
}
.portfolio-glass-card .portfolio-header p {
    color: #e0e0e0 !important;
}

/* Mobile fix for the new portfolio tile */
@media screen and (max-width: 600px) {
    .portfolio-glass-card {
        padding: 20px 15px !important;
        border-radius: 8px !important;
    }
}