/* Modern Banarasi Chaiwala Theme */

:root {
    --primary: #523a28;    /* Dark brown */
    --secondary: #a47551;  /* Medium brown */
    --accent: #d0b49f;     /* Light brown */
    --bg-light: #e4d4c8;   /* Very light brown */
    --text-dark: #523a28;
    --text-light: #e4d4c8;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--text-dark);
    background: linear-gradient(145deg, var(--bg-light) 0%, #FFF 100%);
    margin: 0;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(228, 212, 200, 0.95);  /* using bg-light with opacity */
    box-shadow: 0 4px 30px rgba(82, 58, 40, 0.1);
    padding: 1rem 0;
    border-radius: 0 0 24px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary) !important;
    text-shadow: 2px 2px 4px rgba(82, 58, 40, 0.2);
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary) !important;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.hero-section {
    background-color: rgba(228, 212, 200, 0.9);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(82, 58, 40, 0.2), transparent);
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #5a3f2e;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(82, 58, 40, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(82, 58, 40, 0.3);
}

section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

#about h2, #tea h2, #franchise h2, #contact h2 {
    color: #6f4e37;
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.card {
    background: linear-gradient(145deg, #fff, var(--bg-light));
    border: none;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(82, 58, 40, 0.15);
}

.card-img-top {
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--secondary);
    font-size: 1rem;
}

footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

ul {
    padding-left: 20px;
}

form .form-control {
    background: rgba(228, 212, 200, 0.1);
    border: 2px solid var(--secondary);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
}
form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(164, 117, 81, 0.2);
    border-color: var(--primary);
}

/* Additional styles for better contrast */
.bg-light {
    background-color: var(--bg-light) !important;
}

.text-center h2 {
    color: var(--primary);
}

section p {
    color: var(--secondary);
}

video#ghatViewVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
    border-radius: 0;
    box-shadow: none;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.list-unstyled li {
    transition: transform 0.3s ease;
}

.list-unstyled li:hover {
    transform: translateY(-3px);
}

.list-unstyled a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.list-unstyled a:hover {
    color: var(--secondary);
}

.brand-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 40px;
    }
    
    .navbar-brand span {
        font-size: 1.2rem;
    }
}

h5 {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2rem 0;
}

.social-icon {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
}