/* ============================================
   ALIZETI OUTDOOR - STYLESHEET
   Theme Colors: Orange (#FF6B35) & Luminous Blue (#00D9FF)
   ============================================ */

/* CSS Variables */
:root {
    --alizeti-orange: #EF6A3C;
    --alizeti-orange-dark: #E85A2B;
    --alizeti-orange-light: #FF8C5A;
    --alizeti-blue: #00D9FF;
    --alizeti-blue-dark: #00B8D9;
    --alizeti-blue-light: #5CE8FF;
    --dark-bg: #1A1A2E;
    --darker-bg: #16213E;
    --light-bg: #F8F9FA;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 20px;
    --border-radius-sm: 15px;
    --border-radius-lg: 50px;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-script: 'Alex Brush', cursive;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}




body {
    font-family: var(--font-body);
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

/* Inner pages body padding - compensated for new header height */
body:not(.home) {
    padding-top: 130px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Utility Classes - Colors */
.text-alizeti-orange { color: var(--alizeti-orange) !important; }
.text-alizeti-blue { color: var(--alizeti-blue) !important; }
.bg-alizeti-orange { background-color: var(--alizeti-orange) !important; }
.bg-alizeti-blue { background-color: var(--alizeti-blue) !important; }
.bg-dark-custom { background-color: var(--dark-bg) !important; }
.bg-darker { background-color: var(--darker-bg) !important; }

/* Utility Classes - Gradients */
.gradient-text {
    background: linear-gradient(135deg, var(--alizeti-orange), var(--alizeti-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--alizeti-orange) 0%, var(--alizeti-blue) 100%);
}

.script-font {
    font-family: var(--font-script);
    font-size: 2.2rem;
    line-height: 1;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-alizeti-orange {
    background-color: var(--alizeti-orange);
    border-color: var(--alizeti-orange);
    color: var(--white);
}

.btn-alizeti-orange:hover {
    background-color: var(--alizeti-orange-dark);
    border-color: var(--alizeti-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    color: var(--white);
}

.btn-alizeti-blue {
    background-color: var(--alizeti-blue);
    border-color: var(--alizeti-blue);
    color: var(--dark-bg);
}

.btn-alizeti-blue:hover {
    background-color: var(--alizeti-blue-dark);
    border-color: var(--alizeti-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
    color: var(--dark-bg);
}

.btn-outline-alizeti {
    border: 2px solid var(--alizeti-orange);
    color: var(--alizeti-orange);
    background: transparent;
}

.btn-outline-alizeti:hover {
    background-color: var(--alizeti-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Navigation & Header */
.main-header {
    transition: var(--transition);
    z-index: 1030;
}

.top-header {
    transition: var(--transition-slow);
    background-color: var(--white);
}

.detail-item {
    transition: var(--transition);
}

.detail-item i {
    font-size: 1.1rem;
    line-height: 1;
}

.detail-item .detail-value {
    transition: var(--transition);
    font-weight: 500;
    color: #444 !important;
}

/* Vertical dotted/dashed separators */
.header-details .border-end {
    border-right: 1px dashed #dddddd !important;
}

.mt-n1 {
    margin-top: -0.35rem !important;
}

.bg-alizeti-orange {
    background-color: var(--alizeti-orange) !important;
}

.bg-dark-custom {
    background-color: var(--dark-bg);
}

.navbar {
    transition: var(--transition);
    padding: 0;
    z-index: 1030;
    background-color: var(--alizeti-orange) !important;
}

/* THE ORANGE NAVIGATION STRIP - Full-Width Overlay Logic */
.menubar-sec {
    position: relative;
    z-index: 10;
    background: transparent !important;
    /* Pull content up so this sits ON TOP of the hero */
    margin-bottom: -55px; 
}

.orange-bar {
    position: relative;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    background-color: var(--alizeti-orange) !important;
    clip-path: none; /* Solid strip */
}

@media (min-width: 992px) {
    /* Remove the white pseudo-elements - we use clip-path now for transparency */
    .orange-bar::before, 
    .orange-bar::after {
        display: none;
    }
}

.nav-link {
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0.6rem 1rem !important;
    position: relative;
    z-index: 3;
    transition: var(--transition);
}

.nav-link::after {
    display: none; 
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}


/* Header Scrolled State */
.main-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.main-header.scrolled .top-header {
    padding-top: 0.15rem !important;
    padding-bottom: 0.15rem !important;
}

.main-header.scrolled .top-header img {
    height: 40px;
}

.main-header.scrolled .navbar {
    margin-top: 0;
    clip-path: none; /* Make it full width on scroll for better visibility */
    margin-left: 0;
    margin-right: 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Link underline animation removed for orange bar consistency */


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--alizeti-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(22,33,62,0.8) 100%);
    padding: 100px 0 50px;
    color: var(--white);
    text-align: center;
    margin-top: -76px;
    padding-top: 150px;
}

/* Breadcrumbs Styling */
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-custom a:hover {
    color: var(--alizeti-blue);
}

.breadcrumb-custom .separator {
    color: var(--alizeti-orange);
    font-weight: bold;
}


/* ============================================
   HERO CAROUSEL (Homepage)
   ============================================ */
.hero-carousel {
    height: 100vh;
}

.hero-carousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.7) 0%, rgba(22,33,62,0.5) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255,255,255,0.5);
    border: none;
}

.carousel-indicators button.active {
    background-color: var(--alizeti-orange);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 20;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--alizeti-orange), var(--alizeti-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ============================================
   ADVENTURE CARDS
   ============================================ */
.adventure-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow);
    height: 100%;
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.adventure-card .card-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.adventure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.adventure-card:hover img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--alizeti-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.difficulty-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--alizeti-blue);
    color: var(--dark-bg);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* ============================================
   FEATURE ICONS
   ============================================ */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--alizeti-orange), var(--alizeti-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--alizeti-orange), var(--alizeti-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--alizeti-orange), var(--alizeti-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin: 1rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--alizeti-orange);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--alizeti-blue);
    object-fit: cover;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.destination-card {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.95), transparent);
    padding: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(255,107,53,0.95), transparent);
}

.destination-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Thumbnail Gallery for Destination Cards */
.thumb-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.thumb-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumb-img:hover {
    transform: scale(1.1);
}

.thumb-img.active {
    border-color: var(--alizeti-orange);
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

/* ============================================
   OFFICE LOCATIONS
   ============================================ */
.office-location {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.office-location img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.95), transparent);
    padding: 2rem;
    color: var(--white);
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   MAP CONTAINER (Destinations Page)
   ============================================ */
.map-container {
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    color: var(--white);
}

.continent-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
}

.continent-item:hover {
    background: rgba(255,107,53,0.2);
    padding-left: 1.5rem;
}

.continent-item.active {
    background: var(--alizeti-orange);
    border-radius: 10px;
    border-bottom: none;
}

/* ============================================
   TIMELINE (About Page)
   ============================================ */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--alizeti-orange);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--alizeti-blue);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--alizeti-orange);
}

/* ============================================
   FILTER BUTTONS (Adventures Page)
   ============================================ */
.filter-btn {
    border: 2px solid var(--alizeti-orange);
    color: var(--alizeti-orange);
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: var(--transition);
    margin: 0.25rem;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--alizeti-orange);
    color: var(--white);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--alizeti-orange) 0%, var(--alizeti-blue) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    animation: move 20s linear infinite;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--alizeti-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-floating label {
    padding-left: 1rem;
}

/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--alizeti-orange);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 107, 53, 0.25);
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--alizeti-orange), var(--alizeti-blue));
    color: var(--white);
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--darker-bg);
    color: var(--white);
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--alizeti-blue);
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--alizeti-orange);
    transform: translateY(-3px);
    color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--alizeti-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--alizeti-blue);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
        padding-top: 140px;
    }
    
    .destination-card {
        height: 300px;
    }
    
    .destination-overlay h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        font-family: var(--font-heading);
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-icon,
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

.object-fit-cover {
    object-fit: cover;
}

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.text-white-50 { color: rgba(255,255,255,0.5) !important; }
.text-white-75 { color: rgba(255,255,255,0.75) !important; }

.bg-transparent { background-color: transparent !important; }

.border-radius-20 { border-radius: var(--border-radius) !important; }

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.btn-black {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition);
}

.btn-black:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Toast Container */
.toast-container {
    z-index: 1060;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-carousel,
    footer,
    .btn {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
}