/* 
 * Coqunet - Local Australian Florals
 * Main Stylesheet
 */

:root {
  /* Color Variables */
  --coqunet-cream: #FEFAE0;
  --coqunet-light-sage: #DAD7CD;
  --coqunet-sage: #A3B18A;
  --coqunet-green: #588157;
  --coqunet-deep-green: #3A5A40;
  
  /* Neutral Colors */
  --coqunet-text: #2C3A2D;
  --coqunet-light-text: #4A5B4C;
  --coqunet-border: #E0E0D6;
  --coqunet-background: #FFFFFF;
  --coqunet-overlay: rgba(58, 90, 64, 0.85);
  
  /* Spacing Variables */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-xxl: 4rem;
  
  /* Typography Variables */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* UI Variables */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --box-shadow: 0 0.5rem 1rem rgba(44, 58, 45, 0.08);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--coqunet-text);
  background-color: var(--coqunet-background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

p {
  margin-bottom: var(--space-md);
}

a {
  text-decoration: none;
  color: var(--coqunet-green);
  transition: var(--transition);
}

a:hover {
  color: var(--coqunet-deep-green);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Container */
.coqunet-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header Styles */
.coqunet-header {
  position: relative;
  padding: var(--space-md) 0;
  background-color: var(--coqunet-cream);
  z-index: 100;
  transition: transform 0.4s ease;
}

.coqunet-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coqunet-logo {
  z-index: 101;
}

.coqunet-logo img {
  transition: var(--transition);
}

.coqunet-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--coqunet-cream);
  z-index: 100;
  padding: var(--space-xxl) var(--space-lg);
  overflow-y: auto;
}

.coqunet-nav.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coqunet-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.coqunet-nav-item {
  position: relative;
}

.coqunet-nav-link {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--coqunet-deep-green);
  padding: var(--space-xs) 0;
  position: relative;
  display: inline-block;
}

.coqunet-nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--coqunet-green);
  transition: var(--transition);
}

.coqunet-nav-link:hover:after,
.coqunet-nav-link--active:after {
  width: 100%;
}

.coqunet-menu-toggle {
  z-index: 101;
}

.coqunet-burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.coqunet-burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--coqunet-deep-green);
  transition: var(--transition);
}

.coqunet-burger-btn.active .coqunet-burger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.coqunet-burger-btn.active .coqunet-burger-line:nth-child(2) {
  opacity: 0;
}

.coqunet-burger-btn.active .coqunet-burger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Hero Section */
.coqunet-hero {
  padding: var(--space-xxl) 0;
  background-color: var(--coqunet-cream);
  position: relative;
  overflow: hidden;
  background-image: url('../images/bg-image-1.jpg');
  background-size: cover;
  background-position: center;
}

.coqunet-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--coqunet-overlay);
  z-index: 1;
}

.coqunet-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.coqunet-hero-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.coqunet-hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.coqunet-hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Section Styles */
.coqunet-section {
  padding: var(--space-xxl) 0;
}

.coqunet-section-alt {
  background-color: var(--coqunet-light-sage);
}

.coqunet-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.coqunet-section-subheading {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coqunet-green);
  margin-bottom: var(--space-sm);
}

.coqunet-section-heading {
  font-size: 2.2rem;
  color: var(--coqunet-deep-green);
}

.coqunet-section-intro {
  max-width: 700px;
  margin: var(--space-md) auto 0;
  font-size: 1.1rem;
  color: var(--coqunet-light-text);
}

.coqunet-section-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.coqunet-two-columns {
  align-items: center;
}

.coqunet-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.coqunet-img-rounded {
  border-radius: var(--border-radius-md);
  object-fit: cover;
  width: 100%;
}

.coqunet-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.coqunet-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.coqunet-feature-icon {
  color: var(--coqunet-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coqunet-feature-text {
  font-size: 0.95rem;
}

/* Button Styles */
.coqunet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

.coqunet-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.coqunet-btn-primary {
  background-color: var(--coqunet-green);
  color: white;
}

.coqunet-btn-primary:hover {
  background-color: var(--coqunet-deep-green);
  color: white;
}

.coqunet-btn-outline {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.coqunet-btn-outline:hover {
  background-color: white;
  color: var(--coqunet-deep-green);
}

.coqunet-btn-light {
  background-color: white;
  color: var(--coqunet-deep-green);
}

.coqunet-btn-light:hover {
  background-color: var(--coqunet-cream);
  color: var(--coqunet-deep-green);
}

/* Featured Bouquets */
.coqunet-bouquets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.coqunet-bouquet-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.coqunet-bouquet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(44, 58, 45, 0.1);
}

.coqunet-bouquet-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.coqunet-bouquet-content {
  padding: var(--space-lg);
}

.coqunet-bouquet-title {
  margin-bottom: var(--space-xs);
  font-size: 1.5rem;
  color: var(--coqunet-deep-green);
}

.coqunet-bouquet-price {
  color: var(--coqunet-green);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.coqunet-bouquet-description {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--coqunet-light-text);
}

.coqunet-section-footer {
  text-align: center;
}

/* Process Steps */
.coqunet-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.coqunet-process-step {
  text-align: center;
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
}

.coqunet-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--coqunet-cream);
  color: var(--coqunet-deep-green);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
}

.coqunet-step-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--coqunet-deep-green);
}

/* Testimonials */
.coqunet-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.coqunet-testimonial {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
}

.coqunet-testimonial-content {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.coqunet-testimonial-content p:before {
  content: """";
  font-size: 3rem;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  color: var(--coqunet-sage);
  opacity: 0.3;
}

.coqunet-author-name {
  font-weight: 500;
  color: var(--coqunet-deep-green);
}

/* Contact Banner */
.coqunet-contact-banner {
  background-color: var(--coqunet-deep-green);
  color: white;
  padding: var(--space-xl) 0;
}

.coqunet-contact-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.coqunet-contact-content {
  text-align: center;
}

.coqunet-contact-heading {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

.coqunet-contact-text {
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.coqunet-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.coqunet-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.coqunet-info-icon {
  min-width: 24px;
  color: var(--coqunet-cream);
}

.coqunet-info-text {
  font-size: 0.95rem;
}

/* Footer */
.coqunet-footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background-color: var(--coqunet-cream);
}

.coqunet-footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.coqunet-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coqunet-footer-tagline {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--coqunet-light-text);
}

.coqunet-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.coqunet-footer-link {
  font-size: 0.9rem;
  color: var(--coqunet-light-text);
}

.coqunet-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--coqunet-light-text);
  border-top: 1px solid var(--coqunet-border);
  padding-top: var(--space-lg);
}

/* Cookie Popup */
.coqunet-cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--coqunet-deep-green);
  color: white;
  z-index: 999;
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.coqunet-cookie-popup.active {
  transform: translateY(0);
}

.coqunet-cookie-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.coqunet-cookie-title {
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.coqunet-cookie-content p {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  opacity: 0.9;
}

.coqunet-cookie-content a {
  color: var(--coqunet-cream);
  text-decoration: underline;
}

/* Media Queries */
@media (min-width: 576px) {
  .coqunet-hero-title {
    font-size: 3rem;
  }
  
  .coqunet-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .coqunet-bouquet-image img {
    height: 300px;
  }
  
  .coqunet-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coqunet-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coqunet-contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .coqunet-section-inner {
    flex-direction: row;
  }
  
  .coqunet-column {
    flex: 1;
  }
  
  .coqunet-bouquets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coqunet-contact-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .coqunet-contact-content {
    text-align: left;
    flex: 1;
  }
  
  .coqunet-contact-info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .coqunet-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .coqunet-footer-logo {
    align-items: flex-start;
  }
  
  .coqunet-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  
  .coqunet-cookie-content p {
    margin-bottom: 0;
    margin-right: var(--space-md);
  }
}

@media (min-width: 992px) {
  .coqunet-burger-btn {
    display: none;
  }
  
  .coqunet-nav {
    position: static;
    display: flex;
    height: auto;
    padding: 0;
    width: auto;
    background-color: transparent;
  }
  
  .coqunet-nav-list {
    flex-direction: row;
    gap: var(--space-xl);
  }
  
  .coqunet-nav-link {
    font-size: 1rem;
  }
  
  .coqunet-hero-title {
    font-size: 3.5rem;
  }
  
  .coqunet-section-heading {
    font-size: 2.5rem;
  }
  
  .coqunet-bouquets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .coqunet-process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .coqunet-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .coqunet-hero-title {
    font-size: 4rem;
  }
  
  .coqunet-hero-subtitle {
    font-size: 1.3rem;
  }
  
  .coqunet-section-heading {
    font-size: 3rem;
  }
  
  .coqunet-bouquet-image img {
    height: 350px;
  }
}