@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton.woff2') format('woff2');
  font-display: swap;
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  overflow-x: hidden;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Great Vibes', cursive;\
  letter-spacing: 2px;
}

.video-header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* Remove flexbox for this container */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  color: white;
  text-align: center;
  background: black;
}

.video-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0; /* change from -1 to 0 */
  transform: translate(-50%, -50%);
  /*filter: brightness(0.6);*/
  object-fit: cover; /* ensures video covers area nicely */
}

.video-header .content {
  position: relative; /* make sure it stacks above video */
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}
video-header h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: #e409f2;
  text-shadow: 0 0 10px rgba(228,9,242,.70);
}

.video-header p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}
.content-wrapper {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  max-width: 800px;
  padding: 20px;
  color: white;
}

.content h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: #e409f2;
  text-shadow: 0 0 10px rgba(228,9,242,.7);
  font-family: 'Great Vibes', cursive;
}

.content p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  /* Your button styling here */
}

.btn-primary {
  padding: 1rem 3rem;
  font-size: 1.25rem;
  background-color: #e409f2; 
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(228,9,242,.5);
}

.btn-primary:hover {
  background-color: #b508c3;
  box-shadow: 0 6px 20px rgba(228,9,242,.7);
}

/* Parallax Sections */
section {
  min-height: 80vh;
  padding: 60px 15%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
}

#section1 {
  background-image: url('../img/section1-bg.png');
  /*background-color: rgba(255,255,255,0.6);
  background-blend-mode:soft-light;
  /*background-color: rgba(0,0,0,0.6);
  background-blend-mode: darken;*/
}

#section2 {
  background-image: url('../img/cardio-bg.jpg');
  background-color: rgba(0,0,0,0.5);
  background-blend-mode: multiply;
}

#section3 {
  background-color: #222;
  color: #e409f2;
}

section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
  text-shadow: 0 0 7px rgba(0,0,0,0.6);
}

.apparel-section {
  /*background-color: #111;*/
  background:
    radial-gradient(circle at top, #3a103f 0, #120015 35%, #050308 100%);
  border-top: 1px solid rgba(255, 45, 169, 0.25);
  border-bottom: 1px solid rgba(255, 45, 169, 0.15);
  color: #fff;
  padding: 80px 20px;
}

.apparel-section .container {
  display: flex;
  flex-direction: row; /* Explicitly horizontal */
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.apparel-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.apparel-text h2 {
  font-size: 2.5rem;
  color: #e409f2;
  font-family: 'Great Vibes', cursive;
  margin-bottom: 20px;
}

.apparel-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.apparel-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.apparel-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.btn-secondary {
  background-color: #e409f2;
  border: none;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background-color: #b508c3;
}

.apparel-video {
  width: 320px;          /* make the phone frame a bit larger */
  height: 568px;         /* classic phone-ish ratio */
  border: 6px solid #e409f2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  background: #000;      /* fill behind video */
}

/* base video */
.portrait-video {
  position: absolute;
  top: 50%;
  left: 50%;
}

/* rotated + scaled down so it fits fully */
.portrait-video.rotate {
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.8);
  transform-origin: center center;
  height: 100%;   /* use height as main dimension */
  width: auto;
}


/* Responsive stacking on small screens */
@media (max-width: 768px) {
  .apparel-section .container {
    flex-direction: column;
    text-align: center;
  }

  .apparel-text,
  .apparel-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .apparel-image {
    justify-content: center;
    margin-top: 20px;
  }

  .apparel-text {
    text-align: center;
  }
}
.connect-section {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.connect-section h2 {
  font-family: 'Great Vibes', cursive;
  color: #e409f2;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.connect-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.connect-section {
  padding: 60px 0;
  /* Dark but more interesting than flat #1a1a1a */
  background:
    radial-gradient(circle at top, #3a103f 0, #120015 35%, #050308 100%);
  border-top: 1px solid rgba(255, 45, 169, 0.25);
  border-bottom: 1px solid rgba(255, 45, 169, 0.15);
}

.connect-section .container {
  text-align: center;
}

.connect-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.connect-section p {
  color: #d0c7d8;
  margin-bottom: 1.75rem;
}

/* Social icon styling */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #ff8adf, #ff2da9 40%, #7b1fa2 100%);
  box-shadow: 0 0 18px rgba(255, 45, 169, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.social-links a i {
  font-size: 1.6rem;
  color: #ffffff;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 45, 169, 0.9);
  filter: brightness(1.1);
}

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

.social-links a {
  color: #e409f2;
  font-size: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

.greatVibes {
    font-family: 'Great Vibes', cursive;
}

/* ===== KELLY SCHEDULE MODAL (FORCE VISIBILITY) ===== */

.ks-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important; /* FORCE ABOVE VIDEO */
  height:80vh;
}

.ks-modal.is-open {
  display: flex !important;
}

.ks-modal-dialog {
  background: #111;
  color: #fff;
  padding: 1rem;
  width: 95%;
  max-width: 900px;
  border-radius: 18px;
  border: 2px solid #ff2da9;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  position: relative;
  z-index: 1000000;
  display:flex;
  flex-direction: column;
  height:70vh;
}
.ks-modal-content {
	flex-grow: 1;             /* Allow the content area to grow and fill available space */
    overflow-y: auto;
}

.ks-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.ks-modal-overlay {
  position: fixed;         /* ✅ THIS IS THE KEY */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /*background: rgba(0, 0, 0, 0.6);*/
  background: rgba(255, 255, 255, 0.6);
  z-index: 1001;
}

/* CALENDAR STYLE */
.fc-tooltip {
  position: absolute;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  max-width: 260px;
  z-index: 999999;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Ensure event titles are displayed correctly in the Month view */
.fc-daygrid-event {
    position: relative; /* Ensure proper positioning of event title */
    display: block;
    width: 100%; /* Make sure events take the full width of the grid cell */
    overflow: hidden; /* Hide overflow content */
}

/* Style for the event title */
.fc-daygrid-event .event-title {
    display: block; /* Block-level to fill the event box */
    white-space: nowrap; /* Prevent the title from wrapping */
    overflow: hidden; /* Hide any text that overflows */
    text-overflow: ellipsis; /* Add ellipsis if text is too long */
    padding: 2px; /* Optional: Adjust padding to fit the title within the event box */
    font-size: 12px; /* Adjust font size to ensure it fits better within the cell */
    line-height: 1.2; /* Ensure line height is appropriate */
}

/* Handle overflow in event content */
.fc-daygrid-event-harness {
    display: block; /* Make sure events are block-level elements */
    max-height: 100%; /* Ensure event height is controlled */
    overflow: hidden; /* Prevent the event from overflowing */
}

/* Make sure tooltips appear correctly and do not overlap */
.fc-tooltip {
    white-space: normal; /* Allow wrapping of text inside tooltips */
}


a {
  color: #ff2da9;           /* pick your pink or brand color */
  text-decoration: underline;
}

a:hover {
  color: #ffffff;           /* or a lighter/darker shade */
  text-decoration: none;
}

/* Ensure the icon wrapper is a centered block with the right size */
.icon-wrapper {
  display: flex;  /* Use flexbox for easy centering */
  justify-content: center;  /* Horizontally center */
  align-items: center;  /* Vertically center */
  width: 400px;
  height: 400px;  /* Make sure the height matches the image size */
  position: relative;
}

/* Both icons are absolutely positioned to overlap */
.icon {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: visibility 0s, opacity 0.3s ease;
}

/* Default image (icon.png) will be visible first */
.icon-default {
  visibility: visible;
}

/* On hover (desktop), swap the visibility */
.icon-wrapper:hover .icon-default {
  visibility: hidden;
}

.icon-wrapper:hover .icon-hover {
  visibility: visible;
}

/* Adjust the modal dialog to work well on mobile */
.modal-dialog {
  max-width: 90%; /* Max width of the modal */
  margin-top: 5%; /* Ensure it is spaced properly */
}

.modal-content {
  height: 80vh; /* Limit the height of the modal */
  overflow-y: auto; /* Allow scrolling if content exceeds height */
}

.modal-body {
  max-height: 80vh; /* Restrict body height for scrolling */
  overflow-y: auto; /* Enable scrolling within the modal */
}

#calendar {
    max-height: 60vh;  /* Set the max height of the calendar to 60% of the viewport height */
    overflow-y: auto;  /* Enable scrolling if the calendar exceeds the max height */
}

/* General styles for mobile screens */
@media (max-width: 768px) {
	#calendar {
		max-height: 50vh; /* Limit calendar height on mobile screens to 50% of the viewport */
	  }
	
    /* Ensure the calendar cells are more flexible on mobile */
    .fc-daygrid-day {
        width:14.28%; /* Smaller width for better fitting */
        height: 35px; /* Adjust height to fit better */
		padding: 0px;
    }

    /* Adjust event boxes to avoid overlap */
    .fc-daygrid-event {
        font-size: 10px;
        padding: 0px;
        height: 20px; /* Adjust event height */
        overflow: hidden; /* Hide any overflow */
    }

    /* Make calendar navigation buttons smaller */
    .fc-prev-button, .fc-next-button {
        font-size: 10px;
    }

    /* Make day names smaller */
    .fc-day-header {
        font-size: 12px;
    }
	
	.video-header h1 {
		font-size: 2.5rem;
	  }
	  .video-header p {
		font-size: 1rem;
	  }
	  section {
		padding: 40px 10%;
		min-height: 60vh;
	  }
	  .apparel-section .container {
		flex-direction: column;
		text-align: center;
	  }

	  .apparel-text,
	  .apparel-image {
		max-width: 100%;
		flex: 1 1 100%;
	  }

	  .apparel-image {
		margin-top: 20px;
	  }
	  section {
		background-attachment: scroll;
	  }

	  .icon-wrapper {
		cursor: pointer;
	  }
	
	.modal-dialog {
		width: 100%; /* Make the modal take up full width on smaller screens */
		margin-top: 15%; /* Ensure it’s not too close to the top */
	  }

	  .modal-body {
		max-height: 80vh; /* Set height of modal body */
	  }
}

/* Mobile-specific adjustments for very small screens */
@media (max-width: 480px) {
    .fc-daygrid-event {
        font-size: 9px; /* Even smaller text */
        height: 15px; /* Smaller events */
        padding: 0px;
    }

    .fc-daygrid-day {
        width:14.28%;
        height: 35px; /* Even smaller cells */
		padding:0px;
		margin-bottom:0px;
    }
}




