
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fffaf9; 
    color: #4a2c2a;
    text-align: center;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    box-shadow: 0 2px 20px rgba(229, 179, 155, 0.15); 
    border-bottom: 2px solid #e2725b;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d004d;
}

.logo span {
    color: #e2725b; 
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #4a3b33;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: 0.3s;
}

/* Animation of the line under links*/
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e2725b;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/*section of audio*/
.audio {
    margin: 20px auto;
    padding: 20px;
    background: #f4f7f6; 
    border-radius: 50px; 
    display: inline-block; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #bdc3c7; 
}

.audio p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #e2725b; 
    font-weight: bold;
}


audio {
    height: 40px;
    outline: none;
}

/*vedios*/
.townvedio {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 5%;
    flex-wrap: wrap;
}
.card video {
    width: 100%;    
    height: 200px;  
    object-fit: cover; 
    display: block;
    background-color: #000; 
}


.card {
    background: white;
    width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
