/* home.css - Home page specific styles */
/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    animation-delay: 0.5s;
}

.hero-title {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down-link {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Temple News */
.temple-news {
    background: rgba(245, 130, 32, 0.1);
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.news-label {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
}

.news-marquee {
    overflow: hidden;
}

.news-marquee marquee {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Divine Services - Specific Colors */
.divine-services{
    position: relative;
}
.divine-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../media/ryzi355q/bg-01.png);
    background-size: cover;
    background-position: center;
}
.service-card.service-one{
    background:inherit;
    border-radius: 0;
    padding: 0;
    text-align: left;
    box-shadow: inherit;
    align-items: flex-start;
}
.service-card.service-one::before{
    display:none;
}
.service-card.service-one h2{
    font-family:var(--font-script);
    color:var(--secondary-color);
    font-weight: 400;
}
.service-card.service-one .service-icon{
    margin: 0 0 20px;
}
.service-card.service-one:hover{
    transform:inherit;
}
.service-1 {
    border-top: 4px solid #fde6d2;
}

.service-1 .service-icon {
    background: rgba(253, 230, 210, 0.3);
}

.service-1:hover {
    border-color: var(--primary-color);
}

.service-2 {
    border-top: 4px solid #facda6;
}

.service-2 .service-icon {
    background: rgba(250, 205, 166, 0.3);
}

.service-3 {
    border-top: 4px solid var(--secondary-color);
    color: white;
    background: linear-gradient(135deg, var(--secondary-color), #e67300);
}

.service-3 .service-title,
.service-3 .service-description {
    color: white;
}

.service-3 .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-3 .service-btn {
    background: white;
    color: var(--secondary-color);
}

.service-4 {
    border-top: 4px solid var(--primary-color);
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #1a1c66);
}

.service-4 .service-title,
.service-4 .service-description {
    color: white;
}

.service-4 .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-4 .service-btn {
    background: white;
    color: var(--primary-color);
}
.service-btn{
    position: absolute;
    bottom:20px;
    left:auto;
    right:auto;
    margin:0 auto;
}
/* About Video */
.about-video {
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-video:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

.video-play-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}
.feature-img{
    height: 75px;
    width: 75px;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.feature-img.feature-img-red{
    background:url(../media/m0nnzrxn/circle-red.png) left top no-repeat;
}
.feature-img.feature-img-green{
    background:url(../media/tanbxhtq/circle-green.png) left top no-repeat;
}
.feature-img.feature-img-blue{
    background:url(../media/x22ivjak/circle-blue.png) left top no-repeat;
}

.feature-img.feature-img-orange{
    background:url(../media/1xkhwnex/circle-orange.png) left top no-repeat;
}
.feature-img img{
    height: 42px;
    width: 42px;
    position: relative;
    top: -4px;
    left: -2px;
}
.temple-highlights{
    background:url(../media/xqfe42ah/highlights-bg.jpg) left top;
    position:relative;
}
.highlights-left-wrap{
    padding: 55px;
    width: 40%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: absolute;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: url(../media/goepusht/img-nandi.png);
}
.highlight-card{
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    color: #FFF;
    height: 100%;
}

.highlight-card img{ height:48px;}
.highlight-card-one{
    background: url(../media/v2jnb0ii/004.png) left top no-repeat;
}
.highlight-card-two{
    background: url(../media/0lzdf4f0/001.png) left top no-repeat;
}
.highlight-card-three{
    background: url(../media/b4rdtrg2/005.png) left top no-repeat;
}
.highlight-card-four{
    background: url(../media/ysblha5p/003.png) left top no-repeat;
}
.highlight-card-three, .highlight-card-four{
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
/* Quick Donation */
.quick-donation {
    position: relative;
    overflow: hidden;
}

.donation-option {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.donation-option:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--accent-color);
    transform: translateY(-5px);
}
.donation-donation h2 {
    font-family: var(--font-script);
    color: var(--secondary-color);
    font-weight: 400;
}
.donation-content h2 {
    font-family: var(--font-script);
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 3.5rem;
}
.donation-form {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Visitor Info Cards */
.info-card {
    background: rgba(47, 49, 147, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(47, 49, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Update Divine Services for 5 items */
.divine-services .row {
    justify-content: center;
}

/* .divine-services .col-lg-3 {
    flex: 0 0 auto;
    width: 20%;
} */

/* Gau Seva Specific Styles */
.service-5 {
    border-top: 4px solid #8B4513;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-5::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.2;
    transform: rotate(45deg);
}

.service-5 .service-title,
.service-5 .service-description {
    color: white;
}

.service-5 .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-5 .service-btn {
    background: #F4A460;
    color: #8B4513;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.service-5 .service-btn:hover {
    background: #D2691E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

/* Optional: Add animation for Gau Seva icon */
.service-5 .service-icon {
    animation: cowAnimation 3s ease-in-out infinite;
}

@keyframes cowAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

/* Add a special effect for Gau Seva on hover */
/*.service-5:hover::after {
    content: '🐄';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}
*/
/* Responsive adjustments for 5 services */

@media (max-width: 1399px) {
.highlights-left-wrap {
    padding: 30px;}
}
@media (max-width: 1199px) {
    .divine-services .col-lg-3 {
        width: 25%;
    }
    
    .divine-services .col-lg-3:nth-child(5) {
        margin-top: 20px;
    }
    .hero-slide{
        min-height: 500px;
    }
}
  
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }

    .divine-services .col-lg-3 {
        width: 50%;
    }
    
    .divine-services .col-lg-3:nth-child(5) {
        margin-top: 0;
    }
    .hero-slide {
        min-height: 410px;
    }
    .highlights-left-wrap{
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .donation-content h2{
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    .section-title span::after, .section-title span::before{
        font-size: 22px;
        margin-right: 10px;
    }
    .section-title span::after {
    margin-right: 0;
    margin-left: 10px;
}

    .divine-services .col-lg-3 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    .service-btn{
        position: relative;
        bottom: inherit;
    }
    .service-card.service-one{
        text-align: center;
        align-items: center;
    }
    .service-card.service-one .service-icon {
    margin: 0 auto 20px;
}
.donation-content h2{
        font-size: 2.5rem;
    }
    .lead {
    font-size: 1rem;}
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .temple-news .row {
        flex-direction: column;
        text-align: center;
    }
    
    .temple-news .col-auto {
        margin-bottom: 10px;
    }
    .about-video .video-wrapper iframe{
        height:300px;
    }
    .highlight-card{
            padding: 20px 10px;
    }
    .temple-gallery .gallery-grid .col-sm-6{
     width: 50%;
    }
    .donation-content h2 {
        font-size: 2rem;
    }
    .py-80 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media (max-width: 400px) {
    .temple-gallery .gallery-grid .col-sm-6 {
        width: 100%;
    }
    .temple-highlights .col-lg-7 .col-6{
        width: 100%;
    }
    .about-video .video-wrapper iframe {
        height: 220px;
    }
}