/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*FOR LOGO*/
.floral-icon .icon-img {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

:root {
    /* Color Palette - Deep Purple Theme */
    --primary-purple: #4A2C5A;
    --deep-purple: #2D1B3D;
    --soft-purple: #8B7AA8;
    --lavender: #C8A8E9;
    --soft-yellow: #F5E071;
    --cream-white: #FEF9F1;
    --soft-gray: #F8F6F3;
    --text-dark: #2D1B3D;
    --text-medium: #5A4B6B;
    --text-light: #8B7AA8;
    --accent-green: #7FAD5A;
    
    /* Typography */
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Lora', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(74, 44, 90, 0.1);
    --shadow-medium: 0 8px 30px rgba(74, 44, 90, 0.15);
    --shadow-strong: 0 12px 40px rgba(74, 44, 90, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-script);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 2rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    background: rgba(254, 249, 241, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(200, 168, 233, 0.2);
}
.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block; /* makes width calculation work */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: left;
}

.nav-logo span:last-child {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.floral-icon {
    font-size: 1.5rem;
    animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
    background: rgba(200, 168, 233, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.8), rgba(45, 27, 61, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
    color: white;
}

.hero-title {
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fade-in-up 1s ease-out;
}

.hero-subtitle,.author {
    font-family: var(--font-script);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--lavender);
    margin-bottom: var(--spacing-xl);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fade-in-up 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--soft-yellow), #F0D060);
    color: var(--deep-purple);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fade-in-up 1s ease-out 0.4s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cta-button:hover::before {
    left: 100%;
}

/* .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
} */

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-flowers.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
@keyframes zoomMove {
  0% {
    background-size: 100%;
    background-position: center;
  }
  100% {
    background-size: 110%;
    background-position: top right;
  }
}
/* About Farm Section */
.about-farm {
    padding: var(--spacing-xxl) 0;
    background: var(--cream-white);
    padding-top: 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.section-title {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-lg);
    text-align: center;
      padding: 0;

}

.about-text .section-title .section-Gallery {
    text-align: left;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
}

.farm-quote {
    background: linear-gradient(135deg, var(--lavender), var(--soft-purple));
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-family: var(--font-script);
    font-size: 1.3rem;
    text-align: center;
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.farm-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.farm-quote cite {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    margin-top: var(--spacing-sm);
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: var(--spacing-xxl) 0;
    padding-top: 100px;
    background: linear-gradient(135deg, rgba(200, 168, 233, 0.1), rgba(139, 122, 168, 0.05));
}
.section-Gallery{
    text-align: center;
    color: white;
    margin-bottom: var(--spacing-xl);
    font-size: 3.5rem;
}
.section-subtitle-Gallery{
    text-align: center;
    color: wheat;
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}
.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(74, 44, 90, 0.9));
    color: white;
    padding: var(--spacing-lg);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--soft-yellow);
    margin-bottom: var(--spacing-xs);
    font-size: 1.4rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Videos & Music Section */
.videos-music {
    padding: var(--spacing-xxl) 0;
    background: var(--cream-white);x
    padding-top: 100px; /* or adjust as needed */
}

.media-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.video-section,
.music-section {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.video-section h3,
.music-section h3 {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.video-content {
    position: relative;
}

.video-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-content img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(245, 224, 113, 0.9);
    color: var(--deep-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.video-placeholder:hover .play-button {
    background: var(--soft-yellow);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-description {
    text-align: center;
    color: var(--text-medium);
    font-style: italic;
}

.music-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.music-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(200, 168, 233, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.music-item:hover {
    background: rgba(200, 168, 233, 0.2);
    transform: translateX(5px);
}

.music-icon {
    font-size: 1.5rem;
    color: var(--soft-purple);
}

.music-info h4 {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.music-info p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(139, 122, 168, 0.1), rgba(200, 168, 233, 0.05));
    padding-top: 100px; /* or adjust as needed */
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.portfolio-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: var(--spacing-lg);
}

.portfolio-content h3 {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-md);
}

.portfolio-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xxl) 0;
    background: var(--cream-white);
    padding-top: 100px; /* or adjust as needed */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-form,
.contact-info {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form h3,
.contact-info h3 {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid rgba(200, 168, 233, 0.3);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--soft-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lavender);
    background: white;
    box-shadow: 0 0 0 3px rgba(200, 168, 233, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--soft-purple));
    color: white;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-icon {
    font-size: 1.5rem;
    margin-top: var(--spacing-xs);
}

.info-item h4 {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--deep-purple);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.footer-logo span:last-child {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--soft-yellow);
}

.footer-section h4 {
    color: var(--soft-yellow);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--spacing-sm);
}

.social-icon img.icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.social-icon img.icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--cream-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: var(--spacing-lg) 0;
        gap: var(--spacing-md);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        padding: var(--spacing-lg);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .about-text .section-title .section-Gallery {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .media-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .nav-container {
        padding: 0 var(--spacing-sm);
    }

    .hero-content {
        padding: var(--spacing-md);
    }

    .contact-form,
    .contact-info,
    .video-section,
    .music-section {
        padding: var(--spacing-lg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.nav-link:focus,
.cta-button:focus,
.submit-button:focus,
.social-link:focus {
    outline: 2px solid var(--soft-yellow);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes gentle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.gallery-item,
.portfolio-item,
.music-item {
    animation: fade-in-up 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.social-links {
  display: flex;
  justify-content: center; /* Or 'flex-start' / 'flex-end' / 'space-between' as needed */
  align-items: center;
  gap: 16px; /* spacing between icons */
  margin-top: 20px; /* optional spacing from top */
}

.social-links .icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
  gap:20px;
  padding:40px;
}

.social-links .icon:hover {
  transform: scale(1.1); /* simple hover zoom effect */
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item .nav-link {
  text-decoration: none;
  color: #4E342E;
   /* color: #4B0082; */
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover {
  background-color: #6c3483; /* purple tone */
  color: white;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between image and text */
}
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background:rgba(254, 249, 241, 0.99);
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  min-width: 100%; /* 👈 Make submenu match parent width */
}
.sub-menu li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}
.nav-item:hover .sub-menu {
  display: block;
}


.icon-img {
    width: 60px;      /* adjust size */
    height: 60px;     /* adjust size */
    object-fit: cover;
    border-radius: 50%; /* optional: make it round */
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #2c2c2c; /* adjust to match your theme */
    font-weight: bold;
}

.video-content {
    display: flex;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: #f9f4f0;
  border: 2px solid #e0d9d3;
}

.video-content video {
  width: 110%; /* Usually 100% looks better than 120% */
  max-height: 360px; /* Adjust this value as needed */
  display: block;
  border-radius: 22px;
  object-fit: cover; /* Ensures the video crops nicely if needed */
}


/* .sub-menu li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
} */


/* .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
} */
/* .nav-logo {
    display: flex;
    align-items: left;
} */

/* .nav-logo span:last-child {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
}  */

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

