* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    color: rgb(74, 134, 255);
}

img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 2vh;
    margin-bottom: 2vh;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

section{
    border: 2px solid black;
    padding: 2%;
    border-radius: 10px;
    /* background-color: rgb(62, 62, 62); */
    transition: transform 0.2s;
    font-weight: bold;
}

section a{
    color: rgb(74, 134, 255);;
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    min-height: 100vh;
}

h2 {
    color: rgb(74, 134, 255);
    margin-top: 3vh;
}

img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #7a71fb;
    object-fit: cover;
    margin: 0 auto;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
    cursor: pointer;
}

footer {
    background: #f8f9fa;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 150px; 
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #7a71fb;
    object-fit: cover;
    margin: 0 auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f8f9fa;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 30%);
}

main {
    padding-top: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    background: #f8f9fa;
    text-align: center;
    padding: 20px 0;
    box-shadow: 2px -2px 2px 0px rgba(0, 0, 0, 30%);
}

h3 {
    color: rgb(74, 134, 255);
    font-size: 1.5em;
}

section {
    margin-top: 5vh;
}
section p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer p a{
    text-decoration: none;
    font-weight: bold;
}

.burger-menu {    position: fixed;
    top: 40px;    right: 40px;
    z-index: 2;    overflow-y: hidden;
}
.burger-icon {    font-size: 30px;
    cursor: pointer;    transition: transform 0.3s ease-in-out;
}
.burger-icon:hover {
    transform: rotate(90deg);}

.side-menu {    height: 100%;
    width: 0;    position: fixed;
    top: 0;
    right: 0;    background-color: #111;
    z-index: 3;    overflow-x: hidden;
    transition: width 0.5s ease;    padding-top: 14vh;
    opacity: 0;    transition: opacity 0.5s ease, width 0.5s ease;
}
.side-menu a {
    padding: 2.3vh 50px 2.3vh 70px;    max-width: 280px;
    text-decoration: none;    font-size: 18px;
    color: #818181;    display: block;
    transition: color 0.3s ease;}
.side-menu a:hover {
    color: #f1f1f1;}

.side-menu .close-btn {
    position: absolute;    top: 20px;
    right: 0px;    font-size: 36px;
    transition: color 0.3s ease;}
.side-menu .close-btn:hover {
    color: #f1f1f1;}
.side-menu.open {
    width: 300px;    opacity: 1;
}
.nav-item{
    list-style-type: none;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .burger-icon {        font-size: 30px; font-weight: bold;
    }
    .side-menu a {        padding: 2.3vh 50px 2.3vh 70px;
        max-width: 280px;        font-size: 15px;
    }}
@media screen and (min-width: 480px) and (max-width: 768px) {    .burger-icon {
        font-size: 30px;    }
    .side-menu a {
        padding: 2.3vh 45px 2.3vh 65px;        max-width: 260px;
        font-size: 14px;    }
    .side-menu.open {
        width: 280px;    }
    
}@media screen and (max-width: 480px) {
    .burger-icon {        font-size: 30px;
    }
    .side-menu a {
        padding: 2.3vh 10vw 2.3vh 12vw;        max-width: 250px;
        font-size: 3vw;    }
    .side-menu.open {
        width: 58vw;    }
    .container{
        margin-left: 0px;
    }
}
@media screen and (max-width: 1000px) {
    header nav{
        min-width: 90vw;
    }
}
















.tourist-guide-section {
    padding: 2vw;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 85vw;
    /* margin: auto; */
}

.tourist-guide-section h2 {
    font-size: 2em;
    margin-bottom: 5vh;
}

.tourist-guide-section img {
    border-radius: 8px;
    width: 100vw;
    height: auto;
    margin-bottom: 15px;
}

.tourist-guide-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tourist-guide-section h3 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tourist-guide-section h4 {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tourist-guide-section a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tourist-guide-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .tourist-guide-section {
        padding: 5vw;
    }

    .tourist-guide-section h2 {
        font-size: 1.8em;
    }

    .tourist-guide-section h3,
    .tourist-guide-section h4 {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    .tourist-guide-section h2 {
        font-size: 1.5em;
    }

    .tourist-guide-section img{
        min-width: 80vw;
    }

    .tourist-guide-section p {
        font-size: 1em;
    }
}