/* =================================
   EcoSwag Rentals - Main CSS
   Eco-conscious Event Swag Platform
   ================================= */

/* CSS Variables - Eco-Friendly Color Palette */
:root {
    /* Primary Colors */
    --eco-green: #306414;
    --forest-green: #527e61;
    --sage-green: #85a369;
    --earth-brown: #7e390e;
    --ocean-blue: #4b767c;
    
    /* Light Shades */
    --light-green: #f4f4f4;
    --light-sage: #dddddd;
    --light-brown: #e9e6e0;
    --light-blue: #ffffff;
    --soft-white: #fafafa;
    
    /* Dark Shades */
    --dark-green: #131a07;
    --dark-forest: #314a36;
    --dark-brown: #4a2207;
    --dark-blue: #2c4a51;
    --charcoal: #1e1e1e;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--eco-green), var(--forest-green));
    --gradient-secondary: linear-gradient(135deg, var(--sage-green), var(--ocean-blue));
    --gradient-accent: linear-gradient(135deg, var(--light-green), var(--light-sage));
    
    /* Typography - Conservative sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--soft-white);
    scroll-behavior: smooth;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.70rem;
    color: var(--dark-green);
}

h1 {
    font-size: var(--font-size-3xl);
}

h2 {
    font-size: var(--font-size-2xl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-lg);
}

h5, h6 {
    font-size: var(--font-size-base);
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    color: var(--charcoal);
}

/* Links */
a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--eco-green);
}

/* Header & Navigation */
.navbar {
    background: var(--gradient-primary);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 19px rgba(24, 55, 14, 0.10);
}

.navbar-brand {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: white;
}

.navbar-brand:hover {
    color: var(--light-green);
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    font-size: var(--font-size-base);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-green);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../DRI_images/hero-bg.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

#hero-title-1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

#hero-subtitle-1 {
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--light-green);
}

#hero-desc-1 {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    color: white;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.about-section {
    background-color: var(--light-green);
}

.services-section {
    background-color: white;
}

.features-section {
    background: var(--gradient-accent);
}

.priceplan-section {
    background-color: white;
}

.team-section {
    background-color: var(--light-sage);
}

.reviews-section {
    background-color: white;
}

.casestudy-section {
    background-color: var(--light-blue);
}

.process-section {
    background-color: white;
}

.timeline-section {
    background-color: var(--light-green);
}

.career-section {
    background-color: white;
}

.coreinfo-section {
    background-color: var(--light-sage);
}

.contact-section {
    background: var(--gradient-primary);
    color: white;
}

.blog-section {
    background-color: white;
}

.faq-section {
    background-color: var(--light-green);
}

.gallery-section {
    background-color: white;
    padding: 3rem 0;
}

/* Cards & Components */
.feature-card,
.service-card,
.price-card,
.review-card,
.case-card,
.career-card,
.info-card,
.blog-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 9px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 65, 12, 0.10);
    height: 100%;
}

.feature-card:hover,
.service-card:hover,
.price-card:hover,
.review-card:hover,
.case-card:hover,
.career-card:hover,
.info-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(36, 77, 14, 0.15);
}

/* Service Cards */
.service-card img {
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--eco-green);
    margin-top: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '“';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
}

/* Price Cards */
.price-card.featured {
    border: 3px solid var(--eco-green);
    transform: scale(1.05);
}

.price-card .card-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px 8px 0 0;
    margin: -2rem -2rem 1rem -2rem;
    padding: 2rem;
    text-align: center;
}

.price-card .price {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-top: 0.60rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-green);
}

/* Team Members */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--sage-green);
}

/* Reviews */
.review-card .stars {
    color: #fb8f2a;
    font-size: var(--font-size-lg);
    margin-top: 0.68rem;
}

.review-card .reviewer {
    margin-top: 1rem;
    text-align: right;
}

/* Process Steps */
.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

/* Timeline */
.timeline-item .year {
    background: var(--eco-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: rgb(145, 145, 145);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid var(--light-green);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 0.2rem rgba(161, 187, 134, 0.25);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info .contact-item {
    text-align: center;
}

.contact-info .contact-item i {
    color: var(--light-green);
    margin-bottom: 0.57rem;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 56, 21, 0.30);
}

/* Blog Cards */
.blog-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin: -2rem -2rem 1rem -2rem;
}

.blog-card .read-more {
    color: var(--forest-green);
    font-weight: 600;
    text-decoration: none;
}

.blog-card .read-more:hover {
    color: var(--eco-green);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--light-green);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--dark-green);
    font-weight: 600;
    border: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-green);
    color: var(--dark-green);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--forest-green);
}

.accordion-body {
    background-color: white;
    color: var(--charcoal);
}

/* Gallery */
.gallery-section img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--ocean-blue);
    color: white;
}

.footer h4,
.footer h5 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sage-green);
}

.footer hr {
    border-color: var(--forest-green);
    opacity: 0.3;
}

/* Feature Items */
.feature-item i,
.info-card i {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-eco-green {
    color: var(--eco-green);
}

.bg-eco-green {
    background-color: var(--eco-green);
}

.text-forest-green {
    color: var(--forest-green);
}

.bg-forest-green {
    background-color: var(--forest-green);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Decorative Elements */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: white;
    clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}

/* Custom Grid Enhancements */
.container {
    max-width: 1200px;
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
} 

.hero-section h1 {
    padding-top: 275px;
}


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
