@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* CSS Variables (Global) */
:root {
  /*  Primary Colors */
  --clr-primary:  #FFC5D3;   

  /* Neutral Colors */
  --clr-dark: #000000 ;    
  --clr-light: #f5c4ed;    
  --clr-gray:  #FFFDD0;   

  /* Fonts */
  --font-poppins: "Poppins", sans-serif;
}

/*Box sizing and global reset / CSS RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* document & Body */
html {
  font-size: 62.5% !important; /* (equivalent to 62.5% dapat may) 1rem = 10px */
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--clr-dark) !important;
  font-family: var(--font-poppins) !important;
  font-size: 1.4rem !important;
  line-height: 1.4;
  overflow-x: hidden; /*  tintatago ang element na sobra sa X-axis */
}

/* ===== Element Resets ===== */
/* Grouped selectors for efficiency */
a,
abbr,
acronym,
address,
applet,
article,
aside,
big,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
ul,
var {
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* Specific element overrides */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== Layout Utilities ===== */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 5rem;
}

/* Header/Navbar */
header {
  background-color: var(--clr-dark);
  padding: 2rem 0;
  box-shadow: 0 4px 8px 0px var(--clr-gray);
  position: relative;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo__image img {
  width: 100%;
  display: block;
  height: auto;
}

.logo__title {
  font-size: 2.2 rem;
  font-weight: 600;
  color: var(--clr-light);
}

.logo__title--highlight {
  color: var(--clr-primary);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 5rem;
}

.nav__item a {
  color: var(--clr-light);
  font-weight: 300;
}

.nav__item--active a {
  color: var(--clr-primary);
}

.nav__item a:hover {
  color: var(--clr-primary);
  transition: color 0.3s ease-in-out;
}

.burger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--clr-light);
  transition: all 0.3s ease;
}

.navbar__burger-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 2.1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

/* Open state styles */
.navbar__burger-button.open .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar__burger-button.open .burger-line:nth-child(2) {
  opacity: 0;
}

.navbar__burger-button.open .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Home Page - Banner */

.banner {
  padding: 11rem 0;
}

.banner__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 4rem;
}

.banner__title {
  max-width: 35rem;
  width: 100%;
  justify-self: start;
}

.banner__title h1 {
  font-size: 8rem;
  line-height: 7.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 4rem;
}

.banner__title p {
  margin-bottom: 4rem;
  font-weight: 500;
  text-align: justify;
}

.banner__image {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.banner__image img {
  width: 100%;
  height: auto;
  display: block;
  width: 56rem;
  height: 56rem;
}

.banner__image img:first-child {
  opacity: 0.8s;
}

.banner__image .overlay-img {
  position: absolute;
  top: -4.5rem;
  left: 7.5rem;
  opacity: 1;
  mix-blend-mode: normal;
}


/* Breakpoints (Desktop-First)*/
/*Large Laptops (1200and below)  */
@media (max-width: 1200px) {
  .banner__content {
    grid-template-columns: 1fr;
    gap: 12rem;
  }

  .banner__title {
    max-width: 100%;
    text-align: center;
  }

  .banner__title p {
    text-align: center;
  }

  .banner__image img {
    width: 100%;
    height: auto;
  }
}

h3 {
  color: var(--clr-primary);
  text-align: center;
  height: 5rem;
}

i {
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  padding: 3rem;
  align-items: center;
  margin-bottom: 5px;
}

.services__item p {
  text-align: left;
  align-items: center;
  font-weight: 300;
  margin-bottom: 15px;
}

.services {
  background-color: var(--clr-dark);
  color: var(--clr-light);
  display: grid;
  padding: 11 rem;
}

.services__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
  text-align: justify;
  margin-bottom: 10px;
}

.services__item {
  align-items: center;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--clr-primary);
}

.about {
  padding: 11rem 0;
}
.about__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 7rem;
}


/* FOOTER */
footer {
  padding: 6rem 0;
  background-color: var(--clr-dark);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 1rem 0;
}

.footer__social-media-list ul {
  display: flex;
  gap: 1rem 0;
}

.footer__social-media-list ul li a i,
.footer__office-address p,
.footer__trademark {
  color: white;
}

.footer__trademark,
.footer__office-address {
  text-align: right;
  justify-content: center;
  gap: 1rem;
}

h3 {
  font-size: 3rem;
  line-height: 4.5rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 4rem;
  text-align: center;
}


.about__title h2 {
  font-size: 6rem;
  line-height: 8.5rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 4rem;
}

