@charset "utf-8";

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;600&display=swap');

/* === GLOBAL RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === BODY STYLING === */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #fce4ec, #e0f7fa);
  color: #333;
  line-height: 1.7;
  animation: fadeInBody 1.5s ease-in;
  cursor: url('images/cursor-star.png'), auto;
}

/* === HEADER TEXT === */
h1 {
  font-family: 'Playfair Display', serif;
  color: #ff4081;
  font-size: 64px;
  text-align: center;
  margin: 60px 0 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: slideDown 1s ease-out;
  text-shadow: 2px 2px #fff;
}

h2 {
  font-size: 28px;
  text-align: center;
  color: #00bcd4;
  margin-bottom: 40px;
  font-weight: 600;
}

/* === PARAGRAPH STYLING === */
p {
  font-size: 20px;
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
  color: #555;
}

/* === IMAGE STYLING === */
img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

/* === NAVIGATION === */
nav {
  background: linear-gradient(to right, #00bcd4, #ff4081);
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

nav a {
  color: white;
  margin: 0 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffff8d;
}

/* === CTA BUTTON === */
.cta-button {
  display: inline-block;
  background-color: #ff4081;
  color: white;
  padding: 14px 28px;
  margin: 30px auto;
  text-decoration: none;
  font-size: 18px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #00bcd4;
}

/* === VERSE SECTION === */
.verse {
  background-color: #fff8e1;
  padding: 60px 20px;
  margin: 80px auto;
  text-align: center;
  border-top: 4px solid #ffcc00;
  border-bottom: 4px solid #ffcc00;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.verse blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #6d4c41;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff3e0;
  border-left: 6px solid #ffcc00;
}

.verse em {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  color: #8d6e63;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 30px;
  background-color: #f8bbd0;
  font-size: 16px;
  color: #333;
  margin-top: 80px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

/* === ANIMATIONS === */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* === FLEXBOX GALLERY === */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.flex-container img {
  width: 30%;
  max-width: 300px;
  height: auto;
  border: 4px solid #00bcd4;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* === GRID GALLERY === */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.grid-container img {
  width: 100%;
  height: auto;
  border: 4px solid #ffeb3b;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 40px auto;
  gap: 30px;
  padding: 0 20px;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-images {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
