/*
Theme Name: FloralShop UAE
Theme URI: https://floralshopuae.com
Author: FloralShop Team
Author URI: https://floralshopuae.com
Description: Lightweight WordPress theme built on Underscores starter with Bootstrap 5
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: floralshop
Tags: e-commerce, bootstrap, lightweight, gift-shop
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
# Typography
# Header & Navigation
# Footer
# Utilities
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.top-bar {
  background: linear-gradient(135deg, #198754 0%, #157347 100%);
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-branding img {
  max-height: 50px;
  width: auto;
}

.site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-title a {
  text-decoration: none;
  color: #333;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.main-navigation a:hover {
  color: #198754;
}

#mobileMenu a {
  display: block;
  padding: 0.75rem 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e9ecef;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
  background: #212529;
  color: #adb5bd;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer a {
  color: #adb5bd;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-info {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #343a40;
  margin-top: 2rem;
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Bootstrap Overrides
--------------------------------------------------------------*/
.container {
  max-width: 1200px;
}

/* Add any other general styles you need here */