/*
Theme Name: Basilico
Theme URI: http://demo.7iquid.net/basilico/
Author: 7iquid
Author URI: http://themeforest.net/user/7iquid
Description: Basilico is the WordPress theme for Restaurant, Cafe, Seafood, Bakery, Bar, Catering, Food business and for personal Chef portfolio website. It is designed with Unique and clean & modern Look. The theme helps you to get your site up and running in less than minutes with the One Click Demo Importer. Create pages easily with the Drag & Drop Page Builder (Elementor Free) and fully responsive, retina ready and easy to customize.
Version: 1.1
Tested up to: 8.3
Requires PHP: 7.4
License: ThemeForest
License URI: https://themeforest.net/licenses
Text Domain: basilico
Tags: elementor, cafe, chef, cooking, dishes, fastfood, food, food-store, fruit, meal, pizza, restaurant, translation-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* 1.1. Kolory i fonty */
:root {
  --agunia-bez:   #D2B48C;
  --agunia-mint:  #A8D5BA;
  --agunia-zloto: #C8A95E;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #fafafa;
}

h1, h2, h3, .section-title {
  font-family: 'Great Vibes', cursive;
  color: var(--agunia-mint);
}

/* 1.2. Top bar */
.top-bar {
  background-color: var(--agunia-bez);
  padding: 6px 0;
  font-size: 14px;
  text-align: center;
}
.top-bar .location,
.top-bar .reservation {
  margin: 0 12px;
  display: inline-block;
}

/* 1.3. Główne menu */
.main-navigation a {
  color: var(--agunia-mint);
  transition: color .3s;
}
.main-navigation a:hover {
  color: var(--agunia-zloto);
}

/* 1.4. Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index: -1;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-top: 40vh;
}

/* 1.5. Sekcja “Nasze bestsellery” */
.menu-slider .slide h4 {
  color: var(--agunia-mint);
}
.menu-slider .slide .price {
  color: var(--agunia-zloto);
}

/* 1.6. Coworking – plany */
.coworking-plans {
  background: #f7f3ef;
  padding: 60px 0;
}
.coworking-plans .plans-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.coworking-plans .plan-card {
  background: #fff;
  border: 2px solid var(--agunia-mint);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  width: 260px;
}
.coworking-plans .plan-card h3 {
  margin: 16px 0 8px;
}
.coworking-plans .plan-card .price {
  display: block;
  font-size: 24px;
  color: var(--agunia-zloto);
  margin-bottom: 12px;
}
.coworking-plans .plan-card .btn-plans {
  background: var(--agunia-mint);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .3s;
}
.coworking-plans .plan-card .btn-plans:hover {
  background: var(--agunia-zloto);
}

/* 1.7. Sklep z kawą */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 24px;
}
.shop-grid .product-card {
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}
.shop-grid .product-card .btn-buy {
  background: var(--agunia-mint);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
}
