* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

span {
    color: darkred;
}

/* ------------------MAIN SECTION--------------------------- */

.parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: black;
    height: 100vh; /* Ensure it spans the full viewport height */
}

/* Logo */
.logo {
    grid-area: 1 / 1 / 2 / 3; /* Spans first row and first two columns */
    display: flex;
    align-items: center; /* Center content vertically */
    align-self: start;
    margin-top: 40px;
    margin-left: 10%;
    justify-content: left;
}

.logo p {
    font-size: 1.5rem;
    font-weight: bold;
    color: aliceblue;
    margin: 0; /* Remove any default margins */
}

.favicon {
    grid-area: 1 / 1 / 2 / 2;
}

/* Hamburger */
.hamburger {
    grid-area: 1 / 5 / 2 / 6; /* Hamburger spans last two columns in the first row */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align items to the right */
    justify-content: start;
    margin: 10px 10px 0 0;
    z-index: 1000; /* Ensure it stays on top of other content */

}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* Navigation Links */
.nav-links {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: fixed;
    top: 5%;
    right: 0;
    background-color: darkred;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    align-items: flex-start;

    opacity: 0; /* Fully transparent initially */
    pointer-events: none; /* Disable interactions when not visible */
    transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

.nav-links.active {
    display: flex; /* Show links */
    opacity: 1; /* Fully visible */
    pointer-events: auto; /* Enable interactions */
}

.nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: end;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00bcd4;
}


/* Headerline */
.headerline {
    grid-area: 2 / 1 / 3 / 5; /* Text spans multiple rows and columns */
    margin-left: 5%;
}

.headerline h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 4rem); /* Responsive font size */
    text-transform: uppercase;
}

/* Image */
.image {
    grid-area: 1 / 4 / 4 / 6;/* Image spans columns 6 to 8 and rows 2 to 4 */
    display: flex;
    align-items: stretch; /* Stretches the content vertically */
    justify-content: stretch; /* Stretches the content horizontally */
    overflow: hidden; /* Ensures no overflow beyond grid area */
}

.femaleingym {
    width: 100%; /* Full width of the grid area */
    height: 100%; /* Full height of the grid area */
    object-fit: cover; /* Ensures the image fills the space without distortion */
    border-radius: 50% 0 0 50%;
}

/* Arrow */
.arrow {
    grid-area: 5 / 4 / 6 / 5; /* Center arrow on the last row */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------------SERVICE SECTION--------------------------- */

.service {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch; /* Ensure all cards have the same height */
    background-color: darkred;
}

.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 5px 5px 27px 5px rgba(0,0,0,0.63);
    transition: 0.3s;
    flex: 1;
    background-color: aliceblue;
    margin: 80px;
    justify-items: center;
  }

.card img {
    height:60%;
    object-fit: cover;
}
  
  /* On mouse-over, add a deeper shadow */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  /* Add some padding inside the card container */
  .container {
    padding: 10px 16px;
  }

  .container h4 {
    font-size: 1.5rem;
  }

  .container p {
    font-size: 1.25rem;
    padding-top: 25px;   
}

/* ------------------ABOUT SECTION--------------------------- */

.about {
    width:100%;
    height: auto;
    background-color: black;
}

.parentabout{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.childtext {
    color:rgb(235, 227, 227);
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 5%;
    font-size: 2rem;
    font-weight: 300;
    padding-right: 5%;
}

.childimage img {
    height: 600px;
    float: right; 
}


/* ------------------SCHEDULE SECTION--------------------------- */
/* Add any styles for your schedule section */
.schedule-section {
    padding: 2em;
    text-align: center;
    font-weight: 500px;
    background-repeat: no-repeat;
    width:fit-content;
    background-image:url(images/sch_bg.png);
    background-size: cover;
     }
  
  .schedule-section h2 {
    font-size: 35px;
    color: darkred;
    margin-bottom: 1em;
  }
  
  .schedule-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;
  }
  
  .day {
    width: 300px;
    height: 280px;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    box-shadow: 15px 15px 10px #000000,
               -15px -15px 10px #000000;
    opacity: 0.7;
    justify-content: center;
   
    
  }
  
  
  .day h3 {
    font-size: 1.5em;
    color: #0000008a;
    margin-bottom: 1em;
    font-weight: bold;
    margin-top: 1.3em;
  }
  
  .day ul {
    list-style-type: none;
    padding: 0;
    justify-content: center;
  }
  
  .day ul li {
    font-size: 1em;
    margin-bottom: 0.5em;
    color: rgb(0, 0, 0);
    font-weight: bold;
    justify-content: center;
  }
/* .sch-img {
    width: 25%;
    height: 25%;
    border-radius: 50% 0 0 50%;
    display:left;
} */




/* ------------------FOOTER--------------------------- */

/* Add any styles for your footer */
.contact{
	padding:80px 0px;
	background-color: #000000;
}

.contact .content{
	-webkit-display: flex;
	display: flex;
}

.contact .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding: 15px;
}

.contact .content .form input,
.contact .content .form textarea{
 height: 45px;
 width: 100%;
 padding:6px 12px;
 margin-bottom: 25px;
 background-color: transparent;
 border:1px solid #ffffff;
 font-family: 'Open-sans',sans-serif;
 color:#ffffff;
}
.contact .content .form input:focus,
.contact .content .form textarea:focus{
 outline: none;
}
.contact .content .form input::placeholder,
.contact .content .form textarea::placeholder{
	color:#ffffff;
}
.contact .content .form textarea{
	height: 100px;
}

.contact .content .form button{
	border:none;
	outline: none;
	box-shadow: none;
	height: 45px;
	padding:0px 50px;
	border:1px solid transparent;
	background-color: darkred;
	color:#ffffff;
	font-size: 15px;
	transition: all .5s ease;
	cursor: pointer;
}
.contact .content .form button:hover{
	background-color:transparent;
	color:#ffffff; 
    border-color:#ffffff;
}

.contact .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: darkred;
    padding: 0px 0px 20px;
}
.contact .content .text p{
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 30px;
    font-family: 'Open-sans', sans-serif;
}

.contact .content .text .info ul{
	list-style: none;
	padding:0;
	margin:0;
}

.contact .content .text .info li{
	display: block;
	margin-bottom: 15px;
	color:#ffffff;
	font-size: 15px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 40px;
	font-family: 'Open-Sans',sans-serif;
}
.contact .content .text .info li span{
	display: inline-block;
	position: absolute;
	left:0px;
	top:0px;
	font-size: 20px;
	color: darkred;
}
.contact .content .text .social {
	padding-top: 30px;
}
.contact .content .text .social a{
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: darkred;
    text-decoration: none;	
    display: inline-block;
    margin-right: 10px;
    transition: all .5s ease;
    border:1px solid transparent;
} 

.contact .content .text .social a:hover{
	background-color: transparent;
    border-color: #ffffff;
}

.contact .content .text .social a span{
	color:#ffffff;
	font-size: 20px;
}

.contact .content .text .copy{
	border-top:1px solid #333333;
	margin-top: 30px;
	padding-top: 20px;
	color:#c5c5c5;
	font-size: 15px;
}