:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --gold-color: #d4af37;
    --dark-text: #2c3e50;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #ebebeb;
}

.navbar {
    background: #ebebeb !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-orange) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    border-radius: 5px;
    object-fit: cover;
}

.nav-link {
    color: var(--primary-orange) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--dark-text) !important;
}

.hero-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(255, 140, 66, 0.75)),
                url('../img/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.ge-logo {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-orange), var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
    font-weight: 500;
}

.hero-services {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #f0f6fc;
    line-height: 1.8;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-orange), var(--gold-color));
    border-radius: 2px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.tours-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.tour-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-orange), var(--gold-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    overflow: hidden;
}

.tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-card-img {
    transform: scale(1.05);
}

.contact-section {
    background: var(--dark-text);
    color: white;
    padding: 80px 0;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
}

.email-info a{
    font-size: 0.9rem;
    color: #efe9d3;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.decorative-element {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.temple-icon {
    top: 20%;
    left: 10%;
    font-size: 4rem;
    color: var(--gold-color);
}

.music-icon {
    top: 60%;
    right: 15%;
    font-size: 3rem;
    color: var(--primary-orange);
}

.footer {
    background: var(--primary-orange);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .ge-logo {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-services {
        font-size: 1rem;
    }
}
