/* 
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
*/

/* Add your custom styles here */
.admin-bar .elementor-location-header { 
    top: 32px;
}

.elementor-location-header {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: transparent;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.4s;
    z-index: 99;
    width: 100%;
}

.elementor-location-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background:#090c17;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}



/* ===============================
   GRID LAYOUT
================================ */
.gs-packages-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: start; /* 🔥 IMPORTANT FIX */
}

/* ===============================
   CARD
================================ */
.gs-package-card {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ===============================
   THUMBNAIL
================================ */
.gs-thumb img {
    width: 100%;
    height: 176px;
    object-fit: cover;
    display: block;
	margin-bottom: 15px;
}

/* ===============================
   FRONT
================================ */
.gs-card-front {
    padding: 20px;
}

.gs-card-front h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.gs-excerpt {
    font-size: 15px;
    color: #cbd5f5;
}

/* ===============================
   DETAILS (SLIDE DOWN)
================================ */
.gs-card-details {
    max-height: 0;
    overflow: hidden;
    background: #020617;
    padding: 0 20px;
    transition: max-height 0.45s ease, padding 0.3s ease;
}

.gs-package-card:hover .gs-card-details {
    max-height: 600px;
    padding: 20px;
}

/* ===============================
   2 x 2 DETAILS GRID
================================ */
.gs-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    margin-bottom: 16px;
    padding: 0;
    list-style: none;
	margin-left: 0;
	
}

.gs-details-grid li {
    font-size: 14px;
    color: #e5e7eb;
	gap: 10px;
    display: flex;
}

.gs-details-grid strong {
    display: block;
    font-size: 13px;
    color: #93c5fd;
}

/* ===============================
   GAMES INCLUDED
================================ */
.gs-games-wrap {
    font-size: 14px;
    margin-bottom: 18px;
}

.gs-games-wrap strong {
    color: #93c5fd;
}

.gs-games-list {
    display: inline;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gs-games-list li {
    display: inline;
}

.gs-games-list li:not(:last-child)::after {
    content: ", ";
}

.gs-games-list a {
    color: #38bdf8;
    text-decoration: none;
}

.gs-games-list a:hover {
    text-decoration: underline;
}

/* ===============================
   BUTTONS
================================ */
.gs-buttons {
    display: flex;
    gap: 12px;
}

.gs-btn {
    flex: 1;
    padding: 10px;
    background: #1e293b;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.gs-btn-primary {
    background: #38bdf8;
    color: #020617;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .gs-packages-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gs-packages-wrap {
        grid-template-columns: 1fr;
    }
}



/* =====================================================
   GLOBAL INNER WRAPPER
===================================================== */
.package-inner {
	max-width: 1200px;
	width: 100%;
    margin: 0 auto;
}

/* =====================================================
   FULL WIDTH BANNER
===================================================== */
.package-banner {
    width: 100%;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
	justify-content: center;
	text-align: center;
    background-color: rgb(0 0 0 / 75%);
    background-blend-mode: overlay;
}

.package-banner .ast-container {
    position: relative;
    z-index: 2;
}

.package-banner h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.package-excerpt {
    font-size: 18px;
    color: #cbd5f5;
    max-width: 700px;
    margin-bottom: 30px;
}

/* =====================================================
   META PILLS
===================================================== */
.package-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.package-meta span {
    background: #020617;
    border: 2px solid #38bdf8;
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 140px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

.package-meta span strong {
    display: block;
    font-size: 13px;
    color: #93c5fd;
    margin-bottom: 4px;
}

/* =====================================================
   CONTENT SECTION
===================================================== */
.package-content {
    padding: 70px 0;
}

.package-book-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #38bdf8;
    color: #020617;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-book-btn:hover {
    background: #0ea5e9;
}

/* =====================================================
   INCLUDED GAMES SECTION
===================================================== */
.included-games {
    padding: 70px 0;
    background: #020617;
}

.included-games h2 {
    color: #ffffff;
    margin-bottom: 40px;
}

/* =====================================================
   INCLUDED GAME CARD
===================================================== */
.included-game-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 20px;
    background: #0f172a;
    border-radius: 16px;
    margin-bottom: 20px;
}

.included-game-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.included-game-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.included-game-content h3 a {
    color: #ffffff;
    text-decoration: none;
}

.included-game-content p {
    font-size: 14px;
    color: #cbd5f5;
    margin: 0;
}

/* =====================================================
   EXPLORE CTA
===================================================== */
.explore-btn {
    padding: 10px 22px;
    border-radius: 20px;
    background: #1e293b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.explore-btn:hover {
    background: #334155;
}

/* =====================================================
   BOOKING SECTION
===================================================== */
.package-booking {
    padding: 80px 0;
    background: #020617;
}

.package-booking h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

/*.package-booking iframe {*/
/*    width: 100%;*/
/*    min-height: 600px;*/
    
/*}*/

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {

    .package-banner h1 {
        font-size: 32px;
    }

    .included-game-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .explore-btn {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {

    .package-banner {
        min-height: 420px;
    }

    .package-meta {
        justify-content: center;
    }

    .package-meta span {
        min-width: 100%;
    }
}

.package-booking iframe,
.game-booking-iframe-wrapper iframe{
    width: 100%;
    height: 85vh;
    min-height: 900px;
    border-radius: 16px;
    border: none;
    display: block;
}

.game-duration {
    font-size: 14px;
    color: #fff;
    margin: 6px 0;
}

.game-duration strong {
    color: #93c5fd;
}

.game-excerpt {
    font-size: 15px;
    line-height: 1.6;
}
