/* All Day HD - External Stylesheet */
/* Base styles and common components */

:root{
  --cerise:#EC058E;
  --cerise-light:#ff2da6;
  --orange:#FF9000;
  --orange-light:#ffaa33;
  --purple:#2C0E37;
  --purple-light:#3d1c4a;
  --moonstone:#39A2AE;
  --moonstone-light:#4dbcc9;
  --paper:#ffffff;
  --muted:#FAF7FA;
  --ink:#232326;
  --gray-50:#F9F5F9;
  --gray-100:#F1EAF0;
  
  --max:1200px;
  --radius:16px;
  --radius-sm:12px;
  --radius-lg:24px;
  --shadow-sm:0 2px 8px rgba(44,14,55,.06);
  --shadow-md:0 8px 24px rgba(44,14,55,.12);
  --shadow-lg:0 16px 40px rgba(44,14,55,.16);
  --shadow-xl:0 24px 60px rgba(44,14,55,.20);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;height:100%}
body{
  background:linear-gradient(135deg, #FAF7FA 0%, #FFF5FB 100%);
  color:var(--ink);
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

h1,h2,h3,h4{font-family:'Poppins',sans-serif;color:var(--purple);font-weight:700;line-height:1.2}
h2{font-size:2.2rem}
h3{font-size:1.35rem}
h4{font-size:1.1rem}

.container{max-width:var(--max);margin:0 auto;padding:0 24px}
img{display:block;max-width:100%;height:auto}

/* Announcement Banner */
#announcement-text{
  margin:0;
  text-align:center;
  color:#fff;
  font-size:.9rem;
  opacity:.95;
  transition:opacity .5s ease-in-out;
}

/* Header */
header{
  background:linear-gradient(135deg,#EC058E 0%,#FF5C00 100%);
  color:#fff;
  box-shadow:var(--shadow-xl);
  position:relative;
  overflow:hidden;
}
header::before{
  content:'';
  position:absolute;
  top:-50%;right:-10%;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(255,255,255,.15),transparent 70%);
  border-radius:50%;
  animation:float 20s ease-in-out infinite;
}
@keyframes float{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(-30px,-30px) scale(1.1)}
}
header .wrap{padding:8px 0;position:relative;z-index:1}

/* Navigation */
nav{
  background:var(--purple);
  border-bottom:3px solid var(--cerise);
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow-md);
}
nav .nav-inner{display:flex;align-items:center;padding:10px 0;gap:24px;position:relative}

/* Mobile Menu Toggle */
@media(max-width:900px){
  .mobile-menu-toggle{
    display:flex;
    flex-direction:column;
    gap:4px;
    position:fixed;
    right:24px;
    top:32px;
    transform:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:8px;
    z-index:1002;
    width:40px;
    height:40px;
    justify-content:center;
  }
  .mobile-menu-toggle span{
    width:24px;
    height:3px;
    background:#fff;
    border-radius:2px;
    transition:all .3s ease;
    display:block;
  }
  #main-nav.menu-open .mobile-menu-toggle span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  #main-nav.menu-open .mobile-menu-toggle span:nth-child(2){
    opacity:0;
  }
  #main-nav.menu-open .mobile-menu-toggle span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
}
@media(min-width:901px){
  .mobile-menu-toggle{display:none}
}

/* Nav Brand/Logo */
.nav-brand{display:flex;align-items:center;gap:6px;z-index:2;flex-shrink:0;margin-left:-16px}

/* Nav Logo Orbit (spinning ring container) */
.nav-logo-orbit{
  position:relative;
  width:82px;
  height:82px;
  flex-shrink:0;
}
.nav-logo-center{
  position:absolute;
  top:0;
  left:0;
  width:82px;
  height:82px;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
  z-index:1;
}
.nav-logo-ring{
  position:absolute;
  top:0;
  left:0;
  width:82px;
  height:82px;
  animation:spin 15s linear infinite;
  overflow:visible;
  z-index:2;
}
@keyframes spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.nav-brand img{width:82px;height:82px;border-radius:50%;flex-shrink:0;box-shadow:0 4px 12px rgba(0,0,0,.3);position:relative;z-index:1}
.nav-brand h5{color:#fff;font-size:1.8rem;margin:0;font-weight:700;white-space:nowrap;display:flex;align-items:baseline;gap:6px;letter-spacing:-0.3px;line-height:1.2}
.nav-brand .superscript{font-size:.5em;vertical-align:super;font-weight:inherit;line-height:0;position:relative;top:-0.8em;display:inline}

.nav-center{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:4px;
  flex:1;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  list-style:none;
  padding:0;
  margin:0;
}
.nav-center li{list-style:none;margin:0;padding:0}
.nav-item{position:relative}
.nav-link{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:.9rem;
  padding:8px 16px;
  border-radius:999px;
  transition:all .3s ease;
  position:relative;
  display:flex;
  align-items:center;
  gap:4px;
  cursor:pointer;
  white-space:nowrap;
}
.nav-link:hover{
  background:rgba(255,255,255,.15);
  transform:translateY(-2px);
}
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  background:var(--purple);
  border-radius:8px;
  box-shadow:var(--shadow-lg);
  padding:8px 0;
  min-width:180px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all .3s ease;
  z-index:1000;
  list-style:none;
  margin:0;
}
.nav-item:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.dropdown li{list-style:none;margin:0;padding:0}
.dropdown a{
  display:block;
  padding:12px 20px;
  color:#fff;
  text-decoration:none;
  font-size:.9rem;
  transition:background .2s ease;
  border-radius:0;
  transform:none;
}
.dropdown a:hover{
  background:rgba(255,255,255,.1);
  transform:none;
}
.dropdown-arrow{
  font-size:.8rem;
  transition:transform .3s ease;
}
.nav-item:hover .dropdown-arrow{
  transform:rotate(180deg);
}

/* Mobile-specific logo + header refinements */
@media (max-width: 600px){
  header .wrap{
    padding:6px 0;
  }

  nav .nav-inner{
    gap:16px;
  }

  .nav-logo-orbit,
  .nav-logo-center,
  .nav-logo-ring{
    width:64px;
    height:64px;
  }

  .nav-brand h5{
    font-size:1.5rem;
  }
}

/* Nav Timer */
.nav-timer{
  display:flex;
  align-items:center;
  gap:6px;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  padding:0 16px;
  z-index:2;
}
.timer-display{
  font-size:0.85rem;
  font-weight:600;
  color:#fff;
  background:rgba(44,14,55,0.4);
  padding:4px 10px;
  border-radius:16px;
  min-width:44px;
  text-align:center;
  cursor:pointer;
  transition:all 0.3s ease;
  font-variant-numeric:tabular-nums;
}
.timer-display:hover{
  background:rgba(44,14,55,0.6);
}
.timer-icon-btn{
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  border:none;
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:all 0.3s ease;
  position:relative;
}
.timer-icon-btn:hover{
  background:rgba(255,255,255,0.2);
}
.timer-icon-btn svg{
  width:14px;
  height:14px;
}
.timer-tooltip{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  background:#2c0e37;
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  font-size:0.75rem;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transition:all 0.3s ease;
  z-index:1000;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
.timer-icon-btn:hover .timer-tooltip{
  opacity:1;
  visibility:visible;
}

/* Timer Modal */
.timer-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(4px);
  z-index:2000;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.timer-modal.active{
  display:flex;
}
.timer-modal-content{
  background:#fff;
  border-radius:20px;
  padding:32px;
  max-width:400px;
  width:100%;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.timer-modal-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}
.timer-modal-header h3{
  margin:0;
  color:var(--purple);
  font-size:1.5rem;
}
.timer-modal-close{
  width:32px;
  height:32px;
  border-radius:50%;
  border:none;
  background:rgba(44,14,55,0.1);
  color:var(--purple);
  font-size:24px;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:all 0.3s ease;
}
.timer-modal-close:hover{
  background:rgba(44,14,55,0.2);
}
.timer-large-display{
  text-align:center;
  margin:32px 0;
}
.timer-large-display .timer-time{
  font-size:4rem;
  font-weight:700;
  color:var(--cerise);
  font-variant-numeric:tabular-nums;
  line-height:1;
}
.timer-large-display .timer-label{
  font-size:1rem;
  color:#5d4d57;
  margin-top:8px;
}
.timer-modal-controls{
  display:flex;
  gap:12px;
  justify-content:center;
}
.timer-modal-btn{
  padding:12px 24px;
  border-radius:12px;
  border:2px solid transparent;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
  font-size:1rem;
}
.timer-modal-btn.primary{
  background:var(--cerise);
  color:#fff;
}
.timer-modal-btn.primary:hover{
  background:var(--cerise-light);
  transform:translateY(-2px);
}
.timer-modal-btn.secondary{
  background:transparent;
  color:var(--purple);
  border-color:var(--purple);
}
.timer-modal-btn.secondary:hover{
  background:var(--purple);
  color:#fff;
}

@media(max-width:900px){
  .nav-timer{display:none}
  nav .nav-inner{
    flex-wrap:wrap;
    padding:12px 0;
  }
  .nav-brand{
    margin-left:0;
    flex:1;
    justify-content:center;
  }
  .nav-item{width:100%;list-style:none}
  .dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background:rgba(255,255,255,.05);
    border-radius:8px;
    margin:4px 0;
    display:none;
    list-style:none;
    padding:8px 0;
  }
  .nav-item.active .dropdown{display:block}
  .dropdown li{list-style:none}
  .dropdown a{
    color:#fff;
    border-left:3px solid rgba(255,255,255,.2);
  }
  .dropdown a:hover{
    background:rgba(255,255,255,.1);
    border-left-color:#fff;
  }
}

/* Buttons */
.btn{
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  border-radius:999px;
  padding:16px 40px;
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.3px;
  border:2px solid transparent;
  transition:all .3s ease;
  box-shadow:var(--shadow-md);
}
.btn.primary{
  background:#fff;
  color:var(--cerise);
}
.btn.primary:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}
.btn.secondary{
  background:transparent;
  color:#fff;
  border-color:#fff;
}
.btn.secondary:hover{
  background:#fff;
  color:var(--cerise);
  transform:translateY(-3px);
}

/* Sections */
.section{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(20px);
  border:1px solid rgba(44,14,55,.08);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  padding:56px 40px;
  margin:48px 0;
  position:relative;
  overflow:hidden;
  transition:all .3s ease;
}
.section:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}
.section.highlight{
  background:linear-gradient(135deg,rgba(236,5,142,.03),rgba(255,144,0,.03));
  border:2px solid rgba(236,5,142,.15);
}
.section-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 48px;
}
.section-title{
  font-size:2.5rem;
  margin-bottom:16px;
  position:relative;
  display:inline-block;
}
.section-title::after{
  content:'';
  position:absolute;
  bottom:-8px;left:50%;
  transform:translateX(-50%);
  width:80px;
  height:4px;
  background:linear-gradient(90deg,var(--cerise),var(--orange));
  border-radius:2px;
}
.section-subtitle{
  font-size:1.15rem;
  color:#5d4d57;
  margin-top:24px;
}

/* Footer */
footer{
  background:linear-gradient(135deg,var(--purple),#1a0525);
  color:#fff;
  margin-top:auto;
  padding:64px 0 32px;
  box-shadow:0 -8px 32px rgba(44,14,55,.3);
  position:relative;
  overflow:hidden;
}
main{
  flex:1;
  margin-top:80px;
}
footer::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:4px;
  background:linear-gradient(90deg,var(--cerise),var(--orange));
}
.footer-content{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  margin-bottom:40px;
  width:100%;
  justify-items:start;
}
@media(min-width:561px){
  .footer-content{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    justify-items:start;
  }
}
@media(min-width:901px){
  .footer-content{
    display:grid;
    grid-template-columns:minmax(220px,1.2fr) repeat(3,minmax(130px,max-content));
    column-gap:80px;
    row-gap:0;
    align-items:start;
    justify-items:start;
    max-width:100%;
    width:100%;
    margin-left:0;
    margin-right:0;
  }
  .footer-brand{
    width:auto;
    grid-column:1 / 2;
    padding-right:50px;
  }
  .footer-section:nth-child(2){
    width:auto;
    grid-column:2 / 3;
    padding:0;
    margin:0;
  }
  .footer-section:nth-child(3){
    width:auto;
    grid-column:3 / 4;
    padding:0;
    margin:0;
  }
  .footer-section:nth-child(4){
    width:auto;
    grid-column:4 / 5;
    padding:0;
    margin:0;
  }
}
.footer-brand{
  display:flex;
  flex-direction:column;
  gap:20px;
  min-width:0;
  max-width:100%;
  padding:0;
  margin:0;
  width:100%;
}
.footer-logo{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:8px;
}
.footer-logo img{
  width:60px;
  height:60px;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
  flex-shrink:0;
}
.footer-brand h4{
  color:#fff;
  margin:0;
  font-size:1.5rem;
  font-weight:800;
  line-height:1.2;
}
.footer-brand p{
  opacity:.85;
  line-height:1.5;
  max-width:280px;
  font-size:0.9rem;
  margin:0;
}
.footer-brand .brand-line{
  opacity:.9;
  margin-top:-8px;
  font-size:0.95rem;
  margin-bottom:0;
}
.footer-section{
  min-width:0;
  max-width:100%;
  overflow:hidden;
  padding:0;
  margin:0;
  width:100%;
}
.footer-section h4{
  color:#fff;
  margin-bottom:20px;
  font-size:1.15rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  opacity:.95;
  line-height:1.2;
}
.footer-section p{
  opacity:.85;
  line-height:1.7;
}
.footer-links{
  list-style:none;
  padding:0;
}
.footer-links{
  min-width:0;
}
.footer-links li{
  margin:10px 0;
}
.footer-links li a{
  font-size:1rem;
  white-space:normal;
}
.footer-links a{
  color:#fff;
  text-decoration:none;
  opacity:.8;
  transition:all .3s ease;
  font-weight:500;
  display:inline-block;
  padding:4px 0;
}
.footer-links a:hover{
  opacity:1;
  color:var(--orange-light);
  transform:translateX(4px);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  margin-top:48px;
  padding-top:24px;
  text-align:center;
  opacity:.75;
  font-size:.9rem;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-bottom p{
  margin:0;
}
.social-icons{
  display:flex;
  gap:16px;
  justify-content:center;
  margin-top:8px;
}
.social-icons a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  transition:all .3s ease;
  font-size:1.2rem;
}
.social-icons a:hover{
  background:rgba(255,255,255,.2);
  transform:translateY(-2px);
}

/* Cookie banner (simple informational notice) */
.cookie-banner{
  position:fixed;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  max-width:900px;
  width:calc(100% - 32px);
  background:#fff;
  color:var(--ink);
  border-radius:16px;
  box-shadow:var(--shadow-lg);
  padding:16px 24px;
  display:flex;
  align-items:center;
  gap:20px;
  font-size:.9rem;
  z-index:9999;
}
.cookie-banner p{
  margin:0;
  flex:1;
  line-height:1.5;
}
.cookie-banner button{
  border-radius:8px;
  border:none;
  padding:10px 20px;
  font-size:.9rem;
  font-weight:600;
  cursor:pointer;
  white-space:nowrap;
  flex-shrink:0;
}
.cookie-banner .cookie-accept{
  background:linear-gradient(135deg,var(--cerise),var(--orange));
  color:#fff;
}
.cookie-banner .cookie-close{
  background:transparent;
  color:var(--purple);
}
@media(max-width:600px){
  .cookie-banner{
    flex-direction:column;
    align-items:flex-start;
    border-radius:16px;
  }
  .cookie-banner button{
    width:100%;
    text-align:center;
  }
}

/* Responsive */
@media(max-width:768px){
  .section{padding:40px 24px}
  .btn{padding:14px 32px;font-size:1rem}
}
