

/*==================
WHOLE BODY
==================*/


/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Full-height support */
html, body {
  height: 100%;
}

main {
  padding-top: 70px; /* match nav height */
}

.google-sans-code/*-bold*/{
  font-family: "Google Sans Code", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>/*700*/;
  font-style: normal;
}



/*======================
SECTION (GLOBAL)
======================*/


section {
  padding: 6rem 1.7rem; /* Padding for responsive placement of content in mobile phones*/
}

.sectionbox {
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;   /* controls how wide content can grow */
  margin: 0 auto;     /* centers the container */
  padding: /*0 1rem*/;    /* breathing space on mobile */
}

/* Container width control */
.container.section-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.card {
  background-color: #fff;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow: hidden;            /* 🔑 keeps children inside rounded corners */
  max-width: 500px;            /* match image width */
  margin: 0 auto;
   /* 3D depth */
  box-shadow:
    0 10px 20px rgba(0,0,0,0.08),
    0 20px 40px rgba(0,0,0,0.12),
    0 30px 60px rgba(0,0,0,0.06);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.card img {
  width: 100%;
  height: 400px;             /* 🔑 same image height */
  object-fit: cover;         /* crops nicely */
  display: block;
  object-position: center right;
}


.card video {
  width: 100%;
  height: 400px;             /* 🔑 same image height */
  object-fit: cover;         /* crops nicely */
  display: block;
}

.section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}       


/* Text styles */
.section-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem 0;
  /*font-weight: 500;*/     /* medium, NOT bold */
  color: #ff66c4;
}

.section-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 0.75rem 0;
  font-weight: 400;
}

.section-text h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin: 0 0 0.5rem 0;
  font-weight: 300;     /* medium, NOT bold */
}

.section-text p {
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  margin: 0;
  font-weight: 300;     /* medium, NOT bold */
}

.section-text a{
  text-decoration: none;   /* removes underline */
  color: #000;          /* pick any color you want */
}

.story-script-regular {
  font-family: "Story Script", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* Image styling */
.section-image video {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

/* Desktop — side by side */
@media (min-width: 768px) {
  .container.section-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}


/* Tablet — 2 columns */
@media (min-width: 768px) {
  .containerp.home-gridp {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

/* Desktop — 3 columns */
@media (min-width: 1024px) {
  .containerp.home-gridp {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =====================
   NAVBAR (GLOBAL)
===================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1500;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
  transform: scale(3.2);
  transform-origin: left center;
}

/* =====================
   DESKTOP NAV
===================== */

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #ff66c4;
  text-decoration: none;
  font-size: 1.2rem;
  background: #fff;
  padding: 0.9rem;
  border-radius: 10%;
  font-weight: bold;
  /*font-family: 'YourFontName', sans-serif;*/ /* replace with your font */
}

.nav-links a:hover {
  background: #ff66c4;
  color: #000;
}

/* =====================
   SUBMENU (DESKTOP)
===================== */

.nav-item {
  display: flex;
  align-items: center;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  padding: 0.5rem 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 1600;
}

.has-submenu:hover .submenu {
  display: flex;
}

/* Arrow */
.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.arrow {
  transition: transform 0.25s ease;
}

.has-submenu.open .arrow {
  transform: rotate(180deg);
}

/* =====================
   HAMBURGER
===================== */

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #ff66c4;
  cursor: pointer;
  z-index: 2000;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .logo img {
    height: 50px;
    transform: scale(2.7);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 35%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding-top: 4rem;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 0.8rem 1.5rem;
    width: 100%;
    margin: 0;
    line-height: 1.2;
    font-size: 1.2 rem;
  }

  /* MOBILE SUBMENU */
  .has-submenu {
    flex-direction: column;
  }

  .has-submenu .submenu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .has-submenu.open .submenu {
    display: flex;
  }

  .has-submenu .submenu a {
    padding: 0.6rem 2.2rem;
    font-size: 1rem;
  }
}






/*==================
HOME
==================*/

#home {
    min-height: 100vh; /* full screen height */
}

.homeimg {
  width: 100%;
  grid-column: 1 / -1; /* span all grid columns */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: scale(1.38)

}



/*===================
  ABOUT1
====================*/


#about1 {
    min-height: 100vh; /* full screen height */
    background-color: #ff66c42a;
}


/*=====================
ABOUT2
=====================*/


#about2 {
    min-height: 100vh; /* full screen height */
    background-color: none;
}


/*=====================
ABOUT3
=====================*/


#about3 {
    min-height: 100vh; /* full screen height */
    background-color: #ff66c42a;
}




/*======================
CONTACT
======================*/

#contact {
    min-height: 100vh; /* full screen height */
}

.contact {
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

/* Image styling */

.section-image form {
  width: 100%;
  max-width: clamp(260px, 40vw, 400px);
  padding: clamp(1.5rem, 4vw, 3rem);
  margin: 0 auto;
  background: #ff66c4;
  border-radius: 30px;
   justify-self: center;
}


.section-image h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.section-image p {
  max-width: 420px;
  line-height: 1.6;
}


.section-image h2 {
  margin-bottom: 1.5rem;
}

.section-image label {
  font-size: 1rem;
}

.section-image input,
.section-image textarea {
  width: 100%;
  margin-bottom: 1.2rem;
  padding: 0.7rem  0.85rem;
  border-radius: 20px;
  border: none;
  box-sizing: border-box;
  font-size: 1rem;
}

.section-image button {
  background: #000;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}


.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: block;      /* always block to reserve space */
  opacity: 0;          /* start invisible */
  transition: opacity 0.5s ease;
  height: 1.2em;       /* reserve enough space so form doesn't jump */
}

.form-message.success {
  color: green;
}

.form-message.error {
  color: red;
}



.phone-error {
  color: #b00020;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
  margin-right: 6px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}




@media (max-width: 900px) {
  .home-image {
    /*grid-template-columns: 1fr;*/
     grid-template-columns: 1fr 1fr;
     justify-self: center;
  }   
}



/*======================
FOOTER
======================*/


footer {
  background: #ff66c44a;
  padding: 0.1rem 0.1rem;
}

.containerft.home-gridft {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  

  display: flex;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical centering */
}


