/* Board Game Rental Template - Main CSS */

/* ===============================================
   CSS VARIABLES - 5 COLOR PALETTE + SHADES
   =============================================== */
:root {
    /* Primary Colors */
    --primary-green: #13b76e;
    --primary-orange: #ff1d08;
    --primary-purple: #a474b9;
    --primary-gold: #e19127;
    --primary-slate: #31465b;
    
    /* Light Shades */
    --light-green: #dbffe7;
    --light-orange: #c9b5a6;
    --light-purple: #826dda;
    --light-gold: #ecff74;
    --light-slate: #7599a7;
    
    /* Dark Shades */
    --dark-green: #094619;
    --dark-orange: #b54526;
    --dark-purple: #5e4765;
    --dark-gold: #fdc753;
    --dark-slate: #283f46;
    
    /* Additional Shades */
    --bg-light: #F8F9FA;
    --bg-dark: #0f0f10;
    --text-dark: #252122;
    --text-light: #bcbcbc;
    --white: #FFFFFF;
    
    /* Conservative Font Sizes */
    --font-size-base: 16px;
    --font-size-sm: 17px;
    --font-size-lg: 19px;
    --font-size-xl: 24px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    
    /* Navbar Brand Conservative Size */
    --navbar-brand-size: 1.5rem;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
    --gradient-secondary: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    --gradient-accent: linear-gradient(135deg, var(--primary-slate), var(--primary-green));
}

/* ===============================================
   GENERAL STYLES & TYPOGRAPHY
   =============================================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Conservative Typography */
h1, .h1 { font-size: var(--font-size-h1); font-weight: 700; }
h2, .h2 { font-size: var(--font-size-h2); font-weight: 600; }
h3, .h3 { font-size: var(--font-size-h3); font-weight: 600; }
h4, .h4 { font-size: var(--font-size-h4); font-weight: 500; }
h5, .h5 { font-size: var(--font-size-h5); font-weight: 500; }
h6, .h6 { font-size: var(--font-size-h6); font-weight: 500; }

p {
    color: var(--text-light);
    margin-bottom: 1.07rem;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: var(--navbar-brand-size) !important;
    font-weight: 700;
    color: var(--primary-green) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 27px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--light-green);
    color: var(--dark-green) !important;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../SUS_images/hero-pattern.webp') repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0 0 0 50px;
}

.hero-content h1 {
    margin-bottom: 1.07rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    margin-bottom: 1.67rem;
    color: var(--light-gold);
}

.hero-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* ===============================================
   FEATURE ITEMS & ICONS
   =============================================== */
.feature-item {
    padding: 2rem 1rem;
    border-radius: 21px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-13px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.08rem;
    color: var(--primary-orange);
    margin-bottom: 1.07rem;
}

.feature-icon-large {
    font-size: 4.14rem;
    color: var(--primary-purple);
    margin-bottom: 1.67rem;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 17px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===============================================
   SERVICE CARDS
   =============================================== */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--primary-slate);
    margin-bottom: 1.07rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content ul li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-green);
    position: absolute;
    left: 0;
}

.price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-top: 1.12rem;
}

/* ===============================================
   PRICING PLANS
   =============================================== */
.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 13px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: scale(1.05);
}

.price-card.featured .price-large {
    color: var(--white);
}

.price-large {
    font-size: 2.61rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-top: 1.64rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-card.featured ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===============================================
   TEAM SECTION
   =============================================== */
.team-member {
    text-align: center;
    padding: 1rem;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.07rem;
    border: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.1);
    border-color: var(--primary-orange);
}

.team-member h5 {
    color: var(--primary-slate);
    margin-bottom: 0.58rem;
}

.team-member p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* ===============================================
   REVIEWS SLIDER
   =============================================== */
.reviewsSwiper {
    padding: 2rem 0;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 1rem;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card p {
    font-style: italic;
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: 1.07rem;
}

.review-card h5 {
    color: var(--primary-purple);
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--primary-green);
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

/* ===============================================
   PROCESS STEPS
   =============================================== */
.process-step {
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.60rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-slate);
    margin-bottom: 0.58rem;
}

/* ===============================================
   TIMELINE
   =============================================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    padding: 0 2rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-orange);
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -6px;
}

.timeline-item:nth-child(even)::before {
    left: -6px;
}

/* ===============================================
   CONTACT FORM
   =============================================== */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(49, 85, 65, 0.25);
}

.contact-info-item {
    padding: 1rem;
}

.contact-info-icon {
    font-size: 2.14rem;
    color: var(--primary-orange);
    margin-bottom: 1.07rem;
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 11px 20px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   GALLERY
   =============================================== */
.gallery-image {
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.accordion-item {
    border: none;
    margin-bottom: 1.07rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--bg-light);
    border: none;
    font-weight: 600;
    color: var(--primary-slate);
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    background: var(--white);
    color: var(--text-dark);
}

/* ===============================================
   BLOG SECTION
   =============================================== */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h5 {
    color: var(--primary-slate);
    margin-bottom: 1.07rem;
}

.blog-content a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.blog-content a:hover {
    color: var(--dark-orange);
}

/* ===============================================
   FOOTER
   =============================================== */
footer {
    background: var(--bg-dark) !important;
    color: var(--bg-light);
}

footer h5, footer h6 {
    color: var(--primary-gold);
    margin-bottom: 1.07rem;
}

footer ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-orange);
}

footer hr {
    border-color: var(--primary-slate);
    margin: 2rem 0 1rem;
}

#site-copyright {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* ===============================================
   BREADCRUMB
   =============================================== */
.breadcrumb-section {
    padding-top: 104.00px;
}

.breadcrumb-icon {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

/* ===============================================
   GAME ITEMS & ADDITIONAL PAGES
   =============================================== */
.game-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.game-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-item h5 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-slate);
    margin-bottom: 0.58rem;
}

.game-item p {
    padding: 0 1rem 1rem;
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Service Features for Additional Pages */
.service-feature, .benefit-card, .quality-item, .corporate-service, .support-item, 
.case-study-card, .career-card, .core-info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-feature:hover, .benefit-card:hover, .quality-item:hover, 
.corporate-service:hover, .support-item:hover, .case-study-card:hover, 
.career-card:hover, .core-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon, .benefit-icon, .quality-icon, .corporate-icon, .support-icon {
    font-size: 3.08rem;
    color: var(--primary-purple);
    margin-bottom: 1.07rem;
}

/* Career Cards */
.career-card .badge {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: var(--font-size-sm);
}

/* Space Page */
#space {
    background: var(--gradient-accent);
    color: var(--white);
}

#space h1 {
    font-size: 3.08rem;
    margin-bottom: 1.07rem;
}

#space p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

/* ===============================================
   ANIMATIONS
   =============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-in-up,
    .animate-pulse {
        animation: none;
    }
} 