/* General Styles */
body {
    padding-top: 56px;
    color: #4A4238;
}

/* Custom Colors */
:root {
    --honey-gold: #F2A413;
    --honey-dark: #8B4513;
    --honey-light: #FFC872;
    --honey-cream: #FFF3E0;
    --honey-brown: #704214;
    --honey-light: #FFF4D4;
    --honey-dark: #FFB800;
}

/* Custom Classes */
.bg-honey-cream {
    background-color: #FFF3D4;
}

.bg-honey {
    background-color: var(--honey-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('med - web/med14.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--honey-light);
}

.hero-section .lead {
    font-size: 1.5rem;
    color: var(--honey-cream);
}

/* Navigation */
.navbar-dark {
    background-color: var(--honey-dark) !important;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-toggler {
    border-color: rgba(51, 51, 51, 0.1);
}

.navbar-dark .navbar-brand {
    color: #333333 !important;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.brand-dot {
    color: #ffd700;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    vertical-align: middle;
}

.brand-separator {
    color: var(--honey-brown);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    vertical-align: middle;
    display: inline-block;
    transform: rotate(90deg);
    text-shadow: 1px 1px 2px rgba(112, 66, 20, 0.2);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.navbar-dark .navbar-brand:hover .brand-separator {
    color: #8B5E2D;
    transform: rotate(90deg) scale(1.1);
    text-shadow: 2px 2px 4px rgba(112, 66, 20, 0.3);
    opacity: 1;
}

.navbar-dark .nav-link {
    color: #333333 !important;
    font-weight: 500;
    opacity: 0.9;
}

.navbar-dark .nav-link:hover {
    color: #333333 !important;
    opacity: 1;
}

.navbar-dark .nav-link.active {
    opacity: 1;
    text-decoration: underline;
}

/* Gallery Styles */
.gallery-header {
    background-color: var(--honey-cream);
}

.gallery-section .nav-pills {
    gap: 10px;
}

.gallery-section .nav-pills .nav-link {
    color: var(--honey-brown);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.gallery-section .nav-pills .nav-link.active {
    background-color: var(--honey-gold);
    color: white;
}

.gallery-section .nav-pills .nav-link:hover {
    border-color: var(--honey-gold);
}

.gallery-section .tab-content {
    padding-top: 2rem;
}

.gallery-item {
    margin-bottom: 1.5rem;
    text-align: center;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(242, 164, 19, 0.3);
}

.gallery-caption {
    color: var(--honey-brown);
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    text-transform: capitalize;
}

/* Modal Styles */
.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    padding: 0;
}

.btn-close {
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    padding: 0.5rem;
}

.btn-close:hover {
    opacity: 1;
}

/* Video Styles */
.video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 76px); /* Subtract navbar height */
    overflow: hidden;
    background-color: #000;
    border: 3px solid var(--honey-gold);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(242, 164, 19, 0.2);
    margin: 2rem auto;
    max-width: 1200px;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    text-align: center;
    padding: 1.5rem;
    color: var(--honey-brown);
    font-size: 1.8rem;
    font-weight: 600;
    background-color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--honey-gold);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-section {
    background-color: #fff;
    padding: 2rem 0;
}

/* About Section Styles */
.about-section {
    background-color: #fff8eb;
    padding: 5rem 0;
}

.about-section .section-title {
    color: var(--honey-brown);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--honey-gold);
    margin: 1rem auto;
}

.about-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4a42;
    margin-bottom: 1.5rem;
}

.about-section .highlight {
    color: var(--honey-brown);
    font-weight: 600;
}

.about-section .quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #8b6b61;
    border-left: 4px solid var(--honey-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: none;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(242, 164, 19, 0.3);
}

.card-title {
    color: var(--honey-dark);
}

/* Video Section */
.video-placeholder {
    background-color: var(--honey-cream);
    min-height: 200px;
    border: 2px dashed var(--honey-gold);
}

/* Footer */
footer {
    margin-top: auto;
    background-color: var(--honey-dark) !important;
}

footer h5 {
    color: var(--honey-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
}

/* Contact Section Styles */
.contact-card {
    background-color: var(--honey-cream);
    border: 2px solid var(--honey-dark);
    transition: transform 0.3s ease;
}

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

.section-title {
    text-align: center;
    background-color: var(--honey-cream);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--honey-dark);
    border: 2px solid var(--honey-dark);
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section {
    margin-top: 100px;
    margin-bottom: 50px;
}

.contact-card h3 {
    color: var(--honey-dark);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-card h5 {
    color: var(--honey-brown);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 1.2rem;
    color: #5a4a42;
}

.contact-card a {
    color: var(--honey-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--honey-gold);
}
