/* Amesika Design - Main Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Montserrat:wght@300;400;500&family=Cinzel:wght@400;700&display=swap');

/* Color Variables */
:root {
  --burgundy: #800020;
  --gold: #D4AF37;
  --cream: #FFF8E7;
  --charcoal: #333333;
  --soft-gold: #F5E1A4;
  --white: #FFFFFF;
  --black: #000000;
  --light-grey: #F5F5F5;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.accent-text {
  font-family: 'Cinzel', serif;
}

a {
  text-decoration: none;
  color: var(--burgundy);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* Header */
header {
  background-color: var(--burgundy);
  color: var(--white);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

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

.logo {
  height: 60px;
}

.logo img {
  height: 100%;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--soft-gold);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: absolute;
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--gold);
  color: var(--burgundy);
}

.btn-primary {
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--gold);
  margin: 1rem auto 0;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--burgundy);
  font-weight: 500;
  font-size: 1.1rem;
}

.product-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

/* Collection Section */
.collection {
  background-color: var(--light-grey);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.collection-item {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
}

.collection-content h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--burgundy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--soft-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1rem;
}

.social-icons a {
  color: var(--white);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--burgundy);
  background-color: var(--gold);
}

/* Shopping Cart */
.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--gold);
  color: var(--burgundy);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cart-icon:hover .cart-dropdown {
  display: block;
}

.cart-item {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-grey);
}

.cart-item-image {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.cart-item-price {
  color: var(--burgundy);
  font-weight: 500;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
  font-weight: 500;
}

/* Brand Elements */
.brand-tagline {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  letter-spacing: 1px;
}

.afrofuturistic-element {
  background: linear-gradient(45deg, var(--burgundy), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--burgundy);
  color: var(--white);
  padding: 15px 25px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--burgundy);
    padding: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  nav.active ul li {
    margin: 0.5rem 0;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
}

/* Page Header */
.page-header {
  background-color: var(--burgundy);
  color: var(--white);
  padding: 8rem 0 4rem;
  margin-top: 80px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--soft-gold);
  max-width: 600px;
  margin: 0 auto;
}


/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.event-card {
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-date {
  text-align: center;
  background-color: var(--burgundy);
  color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  min-width: 80px;
  height: fit-content;
}

.event-date .month {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.event-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.event-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.event-location {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.event-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}


/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: var(--white);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
  font-size: 3rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.category-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.category-card p {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.about-card {
  background-color: var(--white);
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.about-card p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-item h4 {
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Home Showcase */
.home-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-image {
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.showcase-content p {
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Live Shopping */
.live-shopping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.live-card {
  background-color: var(--white);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.live-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.live-indicator {
  background-color: #ff4444;
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.upcoming-indicator {
  background-color: var(--gold);
  color: var(--burgundy);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.live-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.live-time {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.live-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Platforms Grid */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.platform-card {
  background-color: var(--white);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-icon {
  font-size: 3rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.platform-card h3 {
  margin-bottom: 1rem;
}

.platform-card p {
  margin-bottom: 1.5rem;
}

/* Newsletter Signup */
.newsletter-signup {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-signup h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.newsletter-signup p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--light-grey);
  border-radius: 4px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--burgundy);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .showcase-item {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}


/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.contact-info > p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  background-color: var(--burgundy);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
}

.contact-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-content p {
  margin: 0;
  line-height: 1.6;
}

.social-contact h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.social-contact .social-icons {
  display: flex;
  gap: 1rem;
}

.social-contact .social-icons a {
  background-color: var(--burgundy);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-contact .social-icons a:hover {
  background-color: var(--gold);
}

/* Contact Form */
.contact-form-container {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-grey);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Business Hours */
.business-hours {
  background-color: var(--cream);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hours-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours-item h3 {
  margin-bottom: 1rem;
  color: var(--burgundy);
  font-size: 1.3rem;
}

.hours-item p {
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

