        /* styles.css - Exact replica of temple website design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #e8d5c4;
    color: #3d2817;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.column-container {
    display: flex;
    gap: 0;
    max-width: 100%;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #8b4513;
    margin-bottom: 35px;
    position: relative;
    padding: 30px 0;
    font-weight: normal;
}

.section-title .title-line {
    display: inline-block;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a574 20%, #d4a574 80%, transparent);
    vertical-align: middle;
}

.section-title .title-line.left {
    margin-right: 30px;
}

.section-title .title-line.right {
    margin-left: 30px;
}

/* About Temple Section */
.about-temple {
    background: #f5e6d3;
    padding-bottom: 50px;
    border-top: 3px solid #5a3a1a;
    position: relative;
}

.decorative-border-top {
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        #5a3a1a 0px,
        #5a3a1a 10px,
        transparent 10px,
        transparent 20px
    );
}

.temple-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #f9f4ee;
    border: 2px solid #d4a574;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #6b4423;
    font-family: 'Georgia', serif;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-btn .tab-icon {
    width: 20px;
    height: 20px;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(180deg, #d4a574 0%, #c89968 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.temple-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.temple-image {
    flex: 1;
}

.temple-image img {
    width: 100%;
    border-radius: 0;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.temple-info {
    flex: 1;
    /* background: rgba(255, 252, 248, 0.85); */
    padding: 35px;
    border-radius: 0;
}

.temple-info p {
    line-height: 1.9;
    margin-bottom: 25px;
    color: #4a3427;
    font-size: 15px;
    text-align: justify;
}

.learn-more-btn {
    background: linear-gradient(180deg, #e68438 0%, #d97634 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(217, 118, 52, 0.3);
    transition: all 0.3s;
}

.learn-more-btn:hover {
    background: linear-gradient(180deg, #f09448 0%, #e68438 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(217, 118, 52, 0.4);
}

/* Donation Highlights Section */
.donation-highlights {
    background: #e8d5c4;
    padding: 50px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.highlight-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 22px;
}

.card-content h3 {
    font-size: 19px;
    color: #5a3a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-content p {
    font-size: 13px;
    color: #7a5a3a;
    margin-bottom: 12px;
    line-height: 1.5;
}

.event-meta {
    font-size: 13px;
    color: #5a3a1a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: #8b4513;
}

.card-btn {
    width: 100%;
    border: none;
    padding: 11px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    color: white;
}

.view-btn {
    background: linear-gradient(180deg, #c89968 0%, #b88958 100%);
}

.register-btn {
    background: linear-gradient(180deg, #d96647 0%, #c85437 100%);
}

.donate-btn {
    background: linear-gradient(180deg, #e68438 0%, #d97634 100%);
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Three Columns Section */
.three-columns {
    background: linear-gradient(180deg, #d4b5a0 0%, #c8a68f 100%);
    padding: 50px 0;
}

.column {
    flex: 1;
    background: rgba(255, 252, 248, 0.95);
    padding: 25px;
    margin: 0 8px;
}

.column-title {
    font-size: 24px;
    color: #6b4423;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

/* Calendar */
.calendar-wrapper {
    background: white;
    padding: 20px;
    border-radius: 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-month {
    font-size: 16px;
    font-weight: 600;
    color: #5a3a1a;
}

.nav-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #8b4513;
    font-size: 16px;
}

.calendar {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.calendar th {
    padding: 10px 5px;
    font-size: 12px;
    color: #5a3a1a;
    font-weight: 600;
}

.calendar td {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    color: #5a3a1a;
    font-size: 14px;
    transition: background 0.3s;
}

.calendar td:hover {
    background: #f5e6d3;
    border-radius: 4px;
}

.calendar td.active {
    background: #d97634;
    color: white;
    border-radius: 4px;
    font-weight: 600;
}

.calendar td.highlighted {
    background: #d97634;
    color: white;
    border-radius: 4px;
    font-weight: 600;
}

.view-all-btn {
    width: 100%;
    background: linear-gradient(180deg, #e68438 0%, #d97634 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 118, 52, 0.3);
}

/* Pooja Booking */
.pooja-wrapper {
    background: white;
    padding: 20px;
}

.pooja-subtitle {
    font-size: 13px;
    color: #5a3a1a;
    margin-bottom: 18px;
    text-align: left;
}

.pooja-items-group {
    margin-bottom: 20px;
}

.pooja-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.pooja-item i {
    color: #d97634;
    font-size: 18px;
    margin-top: 2px;
}

.pooja-details strong {
    display: block;
    color: #5a3a1a;
    font-size: 14px;
    margin-bottom: 4px;
}

.pooja-details span {
    color: #7a5a3a;
    font-size: 12px;
}

.pooja-single {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.pooja-item-with-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.pooja-left {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pooja-left i {
    color: #d97634;
    font-size: 18px;
}

.book-now-btn {
    background: linear-gradient(180deg, #d96647 0%, #c85437 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.book-now-btn.inline {
    padding: 8px 20px;
    font-size: 13px;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(200, 84, 55, 0.3);
}

.pooja-note {
    font-size: 11px;
    color: #7a5a3a;
    margin-top: 15px;
    text-align: center;
}

/* Temple Projects */
.project-card {
    background: white;
    overflow: hidden;
}

.project-image {
    position: relative;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 69, 19, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 18px;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 18px;
    color: #5a3a1a;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.progress-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-content p {
    color: #7a5a3a;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.donate-project-btn {
    width: 100%;
    background: linear-gradient(180deg, #e68438 0%, #d97634 100%);
    color: white;
    border: none;
    padding: 11px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.donate-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 118, 52, 0.3);
}

/* Bottom Columns Section */
.bottom-columns {
    background: linear-gradient(180deg, #c8a68f 0%, #b89580 100%);
    padding: 50px 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact */
.map-wrapper {
    margin-bottom: 20px;
}

.map-placeholder {
    background: linear-gradient(135deg, #e0d5c7 0%, #c8b5a5 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.map-placeholder i {
    font-size: 50px;
    color: #c85437;
}

.get-directions-btn {
    width: 100%;
    background: linear-gradient(180deg, #d96647 0%, #c85437 100%);
    color: white;
    border: none;
    padding: 11px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.get-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 84, 55, 0.3);
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #5a3a1a;
    font-size: 13px;
    line-height: 1.6;
}

.contact-details i {
    color: #d97634;
    margin-top: 2px;
    font-size: 14px;
}

/* Quick Links Form */
.quick-links-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links-form input,
.quick-links-form textarea {
    padding: 12px 15px;
    border: 1px solid #d4a574;
    background: #faf8f5;
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: #5a3a1a;
    border-radius: 0;
    transition: all 0.3s;
}

.quick-links-form input:focus,
.quick-links-form textarea:focus {
    outline: none;
    border-color: #d97634;
    background: white;
}

.quick-links-form textarea {
    resize: none;
}

.send-message-btn {
    background: linear-gradient(180deg, #e68438 0%, #d97634 100%);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.send-message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 118, 52, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .column-container {
        flex-direction: column;
    }
    
    .column {
        margin: 10px 0;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .temple-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title .title-line {
        width: 80px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
