/* Base Styles */
body {
    font-family: 'Shrikhand', 'Noto Sans Devanagari', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5e9;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
}

/* Main Content Styles */
main {
    flex: 1;
    padding: 20px;
    margin-bottom: 60px; /* Space for fixed footer */
}

main h1 {
    color: #8b4513;
    text-align: center;
    font-size: 2.5em;
    margin: 30px 0 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #d4a76a;
    padding-bottom: 10px;
}

main h2 {
    color: #a0522d;
    font-size: 1.8em;
    margin-top: 25px;
    border-left: 4px solid #d4a76a;
    padding-left: 10px;
}

main p {
    text-align: justify;
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Place Card Styles */
.place {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e0d6c2;
    transition: all 0.3s ease;
}

.place:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.place::before {
    content: "🕉️";
    display: block;
    text-align: center;
    font-size: 2em;
    color: #d4a76a;
    margin-bottom: 15px;
}

/* Image Styles */
.place img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border: 3px solid #e0d6c2;
    transition: transform 0.3s ease;
}

.place img:hover {
    transform: scale(1.02);
}

/* Horizontal Rule Style */
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(139, 69, 19, 0), rgba(139, 69, 19, 0.75), rgba(139, 69, 19, 0));
    margin: 30px 0;
}

/* Link Styles */
a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4a76a;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .place {
        padding: 20px;
    }
    
    main h1 {
        font-size: 2.2em;
    }
    
    main h2 {
        font-size: 1.6em;
    }
}

@media screen and (max-width: 768px) {
    
    main {
        padding: 15px;
    }
    
    .place {
        padding: 15px;
    }
    
    main h1 {
        font-size: 1.8em;
        margin: 20px 0 15px;
    }
    
    main h2 {
        font-size: 1.4em;
        margin-top: 20px;
    }
    
    main p {
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    main {
        padding: 10px;
    }
    
    .place {
        padding: 12px;
    }
    
    main h1 {
        font-size: 1.6em;
        margin: 15px 0 10px;
    }
    
    main h2 {
        font-size: 1.3em;
        margin-top: 15px;
    }
    
    main p {
        font-size: 0.95em;
    }
    
}


.header-container {
    background-color: #701f1f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    flex-wrap: wrap;
}

.header-container h3 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

.header-container h1 {
    flex: 1;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}

.header-container img {
    width: 60px;
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: white;
}

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
    .header-container h3 {
        margin: 5px;
        width: 10px;
        font-size: 10px;
        /* Even smaller for tiny screens */
    }

    .header-container h1 {
        font-size: 15px;
        /* Adjust main title */
    }

    .header-container img {
        width: 30px;
        /* Reduce image size further */
    }
}

footer {
    font-family: 'Times New Roman', Times, serif;
    background-color: #701f1f;
    color: white;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

header a {
    text-decoration: none;
    color: white;
}