/* =========================================================================
   VEENA ART - MINIMALIST PASTEL BLUE AESTHETIC STYLES
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&family=Inter:wght@300;400;500&family=Outfit:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap');

/* --- 1. SETTINGS & VARIABLES --- */
:root {
    color-scheme: light;
  /* Colors - Restored to Pastel Blue & Off-White    --bg-color: #FAF9F6;*/
  --bg-color: #FAF9F6;
  --bg-alt: #FFFFFF;
  --text-dark: #2C3E50;
  --text-muted: #64748B;

  --primary-accent: #abc4ff;
  --secondary-accent: #BDE0FE;

  /* Typography */
  --font-brand: 'Abramo', 'Playfair Display', serif; 
  --font-heading: 'Abramo', 'Outfit', sans-serif; /* Also using Abramo for headings if available */
  /* Sizing & Animation */
  --container-max-width: 1200px;
  --transition-speed: 0.3s;
}

/* --- 2. RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background flower chains */
body::before,
body::after {
  content: '';
  position: fixed;
  width: 250px;
  height: 400px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; /* Moved behind content for better blending */
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply; /* Helps blend with the off-white background */
}

body::before {
  left: -10px;
  top: 15%;
  background-image: url('left bgflower.png');
}

body::after {
  right: -10px;
  top: 45%;
  background-image: url('right bgflower.png');
}

@media (max-width: 1200px) {
  body::before, body::after { width: 150px; opacity: 0.2; }
}

@media (max-width: 1400px) {
  body::before { left: 0; opacity: 0.4; }
  body::after { right: 0; opacity: 0.4; }
}

@media (max-width: 768px) {
  body::before, body::after { display: none; }
}
h1,
h2,
h3,
h4,
.cursive-heading {
  color: var(--text-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.cursive-heading {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--primary-accent);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-accent);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- 3. NAVIGATION --- */
header {
  padding: 2rem 0;
  background-color: #FDFDFB;
  /* lighter shade of var(--bg-color) */
  position: sticky;
  top: 0;
  z-index: 100;
  /* border-bottom removed */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-brand);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary-accent);
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

/* Preserving the handwritten pencil line effect */
nav a.active::after,
nav a:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -2px;
  right: -6px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2,15 Q25,3 50,15 T98,13' stroke='%23abc4ff' stroke-width='3' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: transparent;
  z-index: -1;
  transition: all 0.3s ease;
}

nav a.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2,15 Q25,3 50,15 T98,13' stroke='%23abc4ff' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* --- 4. BUTTONS & UI BLOCKS --- */
.btn {
  display: inline-block;
  background-color: var(--primary-accent);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all var(--transition-speed);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(142, 202, 230, 0.4);
}

/* --- 5. IMAGE PLACEHOLDERS --- */
.collage-placeholder {
  background-color: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  font-family: var(--font-heading);
  text-align: center;
  border-radius: 0px;
  border: 2px dashed var(--primary-accent);
  padding: 1rem;
  transition: transform var(--transition-speed);
}

.collage-placeholder:hover {
  transform: scale(1.02);
}

.collage-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.collage-placeholder small {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- 6. PAGE STRUCTURES --- */

/* Hero Section */
.hero {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--bg-alt);
}

.hero .looking-for {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* Sections */
.section-block {
  padding: 5rem 0;
}

.section-block.alt-bg {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2.sub-title {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-header h3 {
  font-size: 3rem;
  color: var(--primary-accent);
}

/* Grid Layouts */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-speed);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .collage-placeholder {
  border: none;
  border-radius: 0;
  width: 100%;
}

/* Typography elements */
.signature {
  font-family: var(--font-script);
  font-size: 2.5rem;
  text-align: right;
  display: block;
  margin-top: 1rem;
  color: var(--primary-accent);
}

.coming-soon {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--primary-accent);
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-accent);
}

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-alt);
  padding: 3rem;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--secondary-accent);
  border-radius: 4px;
  background-color: var(--bg-color);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--secondary-accent);
  margin-top: 2rem;
  color: var(--text-muted);
}

/* --- 7. RESPONSIVE DESIGN (MOBILE) --- */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .brand-logo {
    font-size: 1.8rem;
  }

  .brand-logo img {
    height: 60px !important;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }

  nav a {
    font-size: 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h3 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .signature {
    font-size: 1.8rem;
    text-align: center;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .marquee .gallery-item {
    width: 250px !important;
    height: 250px !important;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 1.5rem;
  }

  nav ul {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header h3 {
    font-size: 1.8rem;
  }
}