/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Global Styles */
* {
  box-sizing: border-box;
}

/* === CUSTOM HEADER STYLING === */
.custom-header {
  background: #8b0000;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-family: sans-serif;
  position: relative;
  min-height: 60px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-title a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  max-width: 100%;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #ffe9e7;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.phone-number {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1rem;
}

.book-now-button {
  background: #ff3b30;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.book-now-button:hover,
.book-now-button:focus {
  background: #c21810;
  border-color: #c21810;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .header-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .book-now-button {
    width: 100%;
    text-align: center;
    padding: 0.4rem 1rem;
  }
}

/* === CUSTOM FOOTER STYLING === */
.custom-footer {
  background-color: #e6281f;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 0;
  max-width: 33.33%;
}

.footer-section h4 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.1rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.25rem;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover,
.footer-section a:focus {
  color: #ffe9e7;
  text-decoration: underline;
}

.footer-phone {
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}

.footer-phone:hover,
.footer-phone:focus {
  color: #ffe9e7;
  text-decoration: underline;
}

.footer-book-btn {
  display: inline-block;
  margin-top: 1rem;
  background: #fff;
  color: #e6281f;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-book-btn:hover,
.footer-book-btn:focus {
  background: #ffe9e7;
  color: #c21810;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .footer-book-btn {
    width: 100%;
    text-align: center;
    padding: 0.4rem 1rem;
  }
}

/* === Additional Global Enhancements === */
body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
}

a {
  color: #ff3b30;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #c21810;
}

h1, h2, h3, h4, h5, h6 {
  color: #8b0000;
  margin-bottom: 1rem;
}

/* Ensure Elementor content fits nicely */
.elementor-section {
  margin-bottom: 2rem;
}

/* WooCommerce Product Pages */
.single-product .product {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.single-product .product_title {
    color: #8b0000; /* Your dark red */
    font-size: 2rem;
    margin-bottom: 1rem;
}

.single-product .price {
    color: #ff3b30; /* Your bright red */
    font-size: 1.5rem;
    font-weight: 600;
}

.single-product .discount-notice {
    color: #ff3b30;
    font-weight: bold;
}

.single-product .woocommerce-product-gallery {
    margin-bottom: 2rem;
}

.single-product .button.product_type_booking {
    background: #ff3b30;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.single-product .button.product_type_booking:hover {
    background: #c21810;
    border-color: #c21810;
}

/* WooCommerce Shop Page */
.shop-page .woocommerce {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.woocommerce ul.products li.product {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #8b0000;
    font-size: 1.2rem;
}

.woocommerce ul.products li.product .price {
    color: #ff3b30;
    font-weight: 600;
}

.woocommerce ul.products li.product .button {
    background: #ff3b30;
    color: #fff;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #c21810;
}

/* Cart Link in Header */
.cart-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.cart-link:hover,
.cart-link:focus {
    color: #ffe9e7;
}
