/* ============================
   SHYAM HOLIDAYS - CSS STYLES
   Color Theme: #4a3115 (Brown) & #eca233 (Gold)
   ============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a3115;
    --accent-color: #eca233;
    --dark-brown: #2a1f0f;
    --light-gold: #f5e8d0;
    --text-color: #333;
    --light-bg: #faf9f7;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   NAVIGATION BAR
   ============================ */

.navbar {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
    transition: var(--transition);
}

/* ============================
   HERO SECTION
   ============================ */

.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a4125 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23eca233' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: slideInUp 1s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 5px 20px rgba(236, 162, 51, 0.3);
}

.cta-button:hover {
    background: #f0ad42;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 162, 51, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============================
   SECTION STYLES
   ============================ */

section {
    padding: 80px 0;
    transition: var(--transition);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================
   DESTINATIONS SECTION
   ============================ */

.destinations {
    background: var(--light-bg);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
    border: 3px solid transparent;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(236, 162, 51, 0.2);
    border-color: var(--accent-color);
}

.card-image {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.destination-card:hover .card-image {
    transform: scale(1.2) rotate(5deg);
}

.destination-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.destination-card p {
    color: #666;
    line-height: 1.8;
}

/* ============================
   PACKAGES SECTION
   ============================ */

.packages {
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(236, 162, 51, 0.3);
    border-left-color: var(--accent-color);
}

.package-card.featured {
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, var(--primary-color), #5a4125);
    color: white;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.package-card.featured .package-badge {
    background: white;
}

.package-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.package-card.featured h3 {
    color: var(--accent-color);
}

.package-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 1rem 0;
    font-weight: bold;
}

.package-card.featured .package-price {
    color: white;
}

.package-price span {
    font-size: 0.9rem;
    color: #999;
    display: block;
}

.package-card.featured .package-price span {
    color: rgba(255,255,255,0.8);
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    color: #666;
}

.package-card.featured .package-features li {
    color: rgba(255,255,255,0.9);
}

.book-button {
    width: 100%;
    padding: 12px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.package-card.featured .book-button {
    background: white;
    color: var(--primary-color);
}

.book-button:hover {
    background: #f0ad42;
    transform: scale(1.05);
}

/* ============================
   ABOUT SECTION
   ============================ */

.about {
    background: linear-gradient(135deg, var(--light-bg), white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    animation: fadeInLeft 0.8s ease;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInLeft 0.8s ease 0.4s both;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.stat:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat:hover h4 {
    color: white;
}

.about-image {
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */

.testimonials {
    background: var(--primary-color);
    color: white;
}

.testimonials .section-title {
    color: var(--accent-color);
}

.testimonials .section-title::after {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(236, 162, 51, 0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

.testimonial-author {
    font-weight: bold;
    color: var(--accent-color);
}

/* ============================
   CONTACT SECTION
   ============================ */

.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    animation: fadeInLeft 0.8s ease;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(236, 162, 51, 0.1);
}

.submit-button {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================
   FOOTER
   ============================ */

.footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(236, 162, 51, 0.3);
}

/* ============================
   ADDRESS SECTION
   ============================ */

.address-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0e6d2 100%);
    padding: 80px 20px;
    border-top: 3px solid var(--accent-color);
}

.address-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.address-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(74, 49, 21, 0.1);
    border-right: 5px solid var(--accent-color);
    transition: var(--transition);
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.address-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo-img {
    height: 160px;
    width: auto;
    object-fit: contain;
}

.address-info {
    flex: 1;
}

.address-card:hover {
    box-shadow: 0 10px 30px rgba(74, 49, 21, 0.15);
    transform: translateY(-5px);
}

.company-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.proprietor {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.business-type {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.address-block {
    margin-top: 20px;
}

.address-label {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        height: 300px;
        font-size: 3rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    .address-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .destinations-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */

.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}
