
:root {
    --kashmir-blue: #0C4160;
    --kashmir-blue-light: #2A617F;
    --kashmir-green: #5A8F51;
    --kashmir-green-light: #7BAA73;
    --kashmir-saffron: #FF9933;
    --kashmir-white: #F7F7F7;
    --kashmir-snow: #FFFFFF;
    --kashmir-accent: #C4AA77;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1601591504091-fcd29c803ff4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
}

.hero-section::before {
    content: "";
    background: linear-gradient(135deg, rgba(12, 65, 96, 0.8) 0%, rgba(90, 143, 81, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.text-kashmir-blue {
    color: var(--kashmir-blue);
}

.text-kashmir-green {
    color: var(--kashmir-green);
}

.text-kashmir-saffron {
    color: var(--kashmir-saffron);
}

.bg-kashmir-blue {
    background-color: var(--kashmir-blue);
}

.bg-kashmir-green {
    background-color: var(--kashmir-green);
}

.bg-kashmir-saffron {
    background-color: var(--kashmir-saffron);
}

.bg-kashmir-white {
    background-color: var(--kashmir-white);
}

.bg-kashmir-accent {
    background-color: var(--kashmir-accent);
}

.border-kashmir-blue {
    border-color: var(--kashmir-blue);
}

.border-kashmir-green {
    border-color: var(--kashmir-green);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(12, 65, 96, 0.15);
}

.hover-scale {
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hover-scale:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.event-timeline {
    position: relative;
}

.event-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--kashmir-blue) 0%, var(--kashmir-green) 100%);
    border-radius: 2px;
}

.event-dot {
    position: absolute;
    left: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--kashmir-blue);
    box-shadow: 0 0 0 4px rgba(12, 65, 96, 0.25);
    z-index: 1;
    transition: all 0.3s ease;
}

.event-item:hover .event-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(12, 65, 96, 0.3);
}

.section-heading {
    position: relative;
    margin-bottom: 3rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--kashmir-blue), var(--kashmir-green));
    border-radius: 2px;
}

.btn-kashmir {
    background-color: var(--kashmir-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-kashmir::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--kashmir-blue-light);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-kashmir:hover::before {
    width: 100%;
}

.btn-kashmir:hover {
    box-shadow: 0 5px 15px rgba(12, 65, 96, 0.3);
}

.btn-kashmir-outline {
    background-color: transparent;
    color: var(--kashmir-blue);
    border: 2px solid var(--kashmir-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-kashmir-outline:hover {
    background-color: var(--kashmir-blue);
    color: white;
    box-shadow: 0 5px 15px rgba(12, 65, 96, 0.3);
}

.img-zoom-container {
    overflow: hidden;
    position: relative;
}

.img-zoom {
    transition: transform 0.5s ease;
}

.img-zoom-container:hover .img-zoom {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.img-zoom-container:hover .img-overlay {
    height: 100%;
    background-color: rgba(12, 65, 96, 0.7);
}

.overlay-content {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.img-zoom-container:hover .overlay-content {
    opacity: 1;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--kashmir-blue);
    box-shadow: 0 0 0 3px rgba(12, 65, 96, 0.25);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
}

.form-group:focus-within .form-label {
    color: var(--kashmir-blue);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-blue {
    background-color: var(--kashmir-blue);
    color: white;
}

.badge-green {
    background-color: var(--kashmir-green);
    color: white;
}

.badge-saffron {
    background-color: var(--kashmir-saffron);
    color: white;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--kashmir-blue), var(--kashmir-green));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.divider-left {
    margin-left: 0;
    margin-right: auto;
}

.footer-link {
    position: relative;
    display: inline-block;
    color: #CBD5E0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--kashmir-blue);
    transition: all 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: #CBD5E0;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--kashmir-blue);
    color: white;
    transform: translateY(-3px);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--kashmir-blue-light);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--kashmir-blue);
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--kashmir-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.section-spacing {
    padding: 5rem 0;
}

.container-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Dropdown menu styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 30;
    border-radius: 0.375rem;
    padding: 0.5rem 0;
    right: 0;
    border-top: 3px solid var(--kashmir-blue);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: var(--kashmir-blue);
    color: white;
    padding-left: 1.25rem;
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 30;
    padding: 1.5rem 0;
}

.mega-menu-trigger:hover .mega-menu {
    display: block;
}

.seasons-bg-spring {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://images.unsplash.com/photo-1496516348160-24b35a31856f?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    background-size: cover;
    background-position: center;
}

.seasons-bg-summer {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://images.unsplash.com/photo-1588860939994-ce86d1913b49?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    background-size: cover;
    background-position: center;
}

.seasons-bg-autumn {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://images.unsplash.com/photo-1508264443919-15a31e1d9c1a?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    background-size: cover;
    background-position: center;
}

.seasons-bg-winter {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://images.unsplash.com/photo-1483664852095-d6cc6870702d?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    background-size: cover;
    background-position: center;
}

/* Mobile navbar styling */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--kashmir-white);
    z-index: 100;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Accordion for mobile menu */
.mobile-accordion-header {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-accordion-header i {
    transition: transform 0.3s ease;
}

.mobile-accordion-header.active i {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-accordion-content.active {
    max-height: 500px;
}

/* For mobile menu dropdown */
@media (max-width: 768px) {
    .mobile-dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-dropdown-content.active {
        max-height: 500px;
    }
}

/* PDF optimization */
section {
    page-break-inside: avoid;
}

@media print {
    .sticky-nav {
        position: relative !important;
        display: none;
    }
    
    .mobile-nav, .mobile-nav-overlay {
        display: none !important;
    }
}
