/*
Theme Name: Sure Trip BD
Theme URI: https://www.suretripbd.com/
Author: Robin Rahman
Author URI: https://www.facebook.com/robinrahman212
Description: A travel booking WordPress theme based on travel agency design. Showcase destinations, manage packages, and let customers book flights, hotels, and tours with ease.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: suretripbd
Elementor Support: true
Tags: travel agecny, travel, tour, booking, suretrip
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
/* --- Core styles (from original HTML) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	
}
/* =======================
   Mobile Responsive Header
======================= */
.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
    background: none;
    border: none;
}

/* Default nav */
#main-nav {
    display: flex;
}

/* Mobile styles */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    #main-nav {
        display: none;
        width: 100%;
    }

    #main-nav.active {
        display: block;
        background: var(--light);
        padding: 15px;
        box-shadow: var(--shadow);
        border-radius: var(--radius);
        margin-top: 10px;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    #main-nav ul li {
        text-align: center;
    }

    #main-nav ul li a {
        display: block;
        padding: 10px;
        border-radius: var(--radius);
    }

    #main-nav ul li a:hover {
        background: var(--primary);
        color: #fff;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }
}

:root {
    --primary: #2563eb;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #e2e8f0;
    --text: #334155;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

body {
    background-color: #f1f5f9;
    color: var(--text);
    line-height: 1.6;
}

.elementor-container{
    .container {
    max-width: 1200px; 
    margin: 0 auto;
}

}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */
header {
    background: var(--light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
	
    gap: 10px;
}

.logo i {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
        background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(14, 165, 233, 0.8)), url('https://suretripbd.com/wp-content/uploads/2025/09/slider.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Booking Form */
.booking-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-top: -70px;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.booking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tab {
    padding: 12px 25px;
    background: var(--gray);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab.active {
    background: var(--primary);
    color: white;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.search-btn {
    background: var(--accent);
    padding: 15px 30px;
    font-size: 18px;
    width: 100%;
    margin-top: 20px;
}

/* Special Offers */
.offers {
    padding: 80px 0;
}


.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--dark);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.offer-content {
    padding: 25px;
}

.offer-badge {
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.offer-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.offer-card p {
    margin-bottom: 20px;
    color: var(--text);
}

/* Gift Cards */
.gift-cards {
    background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1335&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.gift-content {
    max-width: 700px;
    margin: 0 auto;
}

.gift-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gift-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Destinations */
.destinations {
    padding: 80px 0;
    background: var(--light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.destination-content p {
    margin-bottom: 15px;
    color: var(--text);
}

.destination-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.contact-info {
    margin-top: 15px;
}

.contact-info div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .booking-container {
        margin-top: -40px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
.auth-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.auth-container .form-group {
    margin-bottom: 20px;
}

.auth-container label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.auth-container input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    font-size: 16px;
}

.auth-container input:focus {
    border-color: var(--primary);
    outline: none;
}

.auth-container .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

	/* Remove underline from logo link */
.logo a,
.site-logo {
    text-decoration: none;
    color: inherit; /* keeps your text/icon color */
}

.logo a:hover,
.site-logo:hover {
    text-decoration: none;
    color: inherit; /* optional: stops hover color change */
}

}
