@charset "utf-8";
/* CSS Document */

/*Imported Fonts*/


/*Global Styles*/
html, body {
    height: 100%;
    margin: 0;
	font-family: 'Covered By Your Grace', cursive;
}

body {
	background-image: url("website style images/codedcanvasbackground.jpg");
    background-color:#5a98d8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;

font-family: 'Covered By Your Grace', cursive;
letter-spacing: 2px;
    font-weight: 800;
	font-size: 12px;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}



.title-h2 {
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(90,152,216,0.25), rgba(234,227,196,0.25));
    backdrop-filter: blur(6px); /* glassy effect */
	color:#eae3c4;
font-family: 'Covered By Your Grace', cursive;
letter-spacing: 2px;
	font-weight: 800;
	font-size: 50px;
}

.book-now-btn {
    display: inline-block;
    padding: 30px 50px;   /* bigger click area */
    border-radius: 12px;

    background: linear-gradient(135deg, rgba(90,152,216,0.6), rgba(91,183,171,0.6));
    backdrop-filter: blur(6px);

    color: #eae3c4;
    font-family: 'Covered By Your Grace', cursive;
    font-size: 30px;      /* bigger text */
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;

    border: 2px solid rgba(234,227,196,0.4);

    transition: all 0.3s ease;
    cursor: pointer;
}
.book-now-btn:hover {
    background: linear-gradient(135deg, rgba(91,183,171,0.8), rgba(90,152,216,0.8));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.book-now-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.bio-text {
    max-width: 800px;
    margin: 20px auto;
    padding: 25px;

    background: rgba(234,227,196,0.15);
    backdrop-filter: blur(6px);
    border-radius: 12px;
	border: 4px solid rgba(91, 183, 171, 0.6);

	font-family: 'Covered By Your Grace', cursive;
      font-size: 22px;
  line-height: 1.6; /* optional: improves readability */
	color: #eae3c4;
    letter-spacing: 2px;
    font-weight: 800;

        /* ← smaller but still readable */
}

.bio-text p {
    margin-bottom: 12px;
}

.bio-text p:last-child {
    margin-bottom: 0;
		color:#eae3c4;
font-family: 'Covered By Your Grace', cursive;
letter-spacing: 2px;
	font-weight: 800;
	  font-size: 22px;
  line-height: 1.6; /* optional: improves readability */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 15px;
  margin: 20px 0;
}

.gallery a {
  display: block;
}

.gallery img {
  width: 100%;
  height: 200px;        /* keeps rows even */
  object-fit: cover;    /* prevents stretching */
  border-radius: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.gallery-item {
  text-align: center;
}

.gallery img {
  max-width: 100%;
  height: auto; /* THIS preserves original proportions */
  display: block;
  margin: 0 auto;
}

.image-title {
  margin-top: 8px;
  color: #eae3c4;
  font-size: 14px;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.bio-section {
  display: flex;
  align-items: center;   /* vertically aligns them */
  justify-content: center;
  gap: 40px;             /* space between image and text */
  flex-wrap: wrap;       /* allows stacking on small screens */
  margin: 40px auto;
  max-width: 1000px;
	
	  background: linear-gradient(135deg, rgba(90,152,216,0.25), rgba(234,227,196,0.25));
  backdrop-filter: blur(6px);
  border-radius: 12px;
	
			
font-family: 'Covered By Your Grace', cursive;
	color:#eae3c4;
letter-spacing: 2px;
	font-weight: 800;
	  font-size: 22px;
  line-height: 1.6;
}

.bio-image img {
  max-width: 300px;
  height: auto;
  display: block;
}

.portfolio-section {
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;

    background: linear-gradient(135deg, rgba(90,152,216,0.25), rgba(234,227,196,0.25));
    backdrop-filter: blur(6px);

    border: 2px solid rgba(234,227,196,0.3);
	  font-size: 50px;
  color: #eae3c4;
	font-family: 'Covered By Your Grace', cursive;
}

.portfolio-section h3 {
  font-family: 'Covered By Your Grace', cursive;
  color: #eae3c4;
  letter-spacing: 2px;
  font-weight: 600;
	font-size: 30px;
}

.hero-section {
  display: flex;
  flex-direction: row;   /* forces left → right */
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap; /* keeps it responsive */
}

/* LEFT SIDE */
.hero-text {
  flex: 1;
  min-width: 300px;
  font-size: 50px;
  color: #eae3c4;
	font-family: 'Covered By Your Grace', cursive;

  padding: 20px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(90,152,216,0.3),
    rgba(91,183,171,0.3)
  );

  backdrop-filter: blur(6px);
  border: 4px solid #5bb7ab;
}

/* RIGHT SIDE */
.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background-color: #5a98d8;
  color: #eae3c4;
  text-align: center;
  padding: 24px 12px;
  font-family: 'Covered By Your Grace', cursive;
}