* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: monospace;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f5f0;
    color: #333;
}


header {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    backdrop-filter: blur(10px);
    background-color: #000000;
    box-shadow: 0 40px 10px 0 rgba(0, 0, 0, 0.16);
}

header .logo {
    font-size: 30px;
    margin: 20px 40px;
    padding: 15px 20px;
    text-shadow: 5px 5px 10px rgb(204, 65, 209);
}

header nav a {
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
}

header nav a:hover {
    color: rgb(99, 36, 99);
    ;
}

.hero {
    background-image: url("card2.3.jpg");
    background-position: center;
    height: 90vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
}

.hero h1 {
    font-family: fantasy;
    font-size: 100px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #f5e9f8;
    text-shadow: 5px 5px 5px rgb(252, 183, 252);
}

.hero h1:hover {
    font-family: fantasy;
    font-size: 100px;
    margin-bottom: 1rem;
    color: #f5e9f8;
    text-shadow: 5px 5px 5px black;
}


.hero p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    letter-spacing: 2px;
    font-weight: 200;
    font-size: 30px;
    margin-bottom: 2rem;
    color: beige;
}

.hero p:hover {
    text-shadow: 5px 5px 5px rgb(188, 158, 188);
    ;
}

.hero .btn {
    font-size: 20px;
    background-color: rgb(99, 36, 99);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border: 5px black double;
    border-radius: 50px;

}

.hero .btn:hover {
    background-color: #b667cf;

}


.gallery {
    background-color: #000000;
    padding: 4rem 2rem;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

#box {
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

#box1 {
    background-color: #dddd;
    height: 250px;
    width: 300px;
    background-image: url("boxbg.jpg");
    background-size: cover;
    background-position:center;
    border: top right radius 50px; ;
    transition: transform 0.3s ease;
}
#box1:hover , #box2:hover{
    transform: scale(1.5);
}

#box2{
    background-color: #dddd;
    height: 250px;
    margin-left: 100px;
    width: 300px;
    background-image: url("box3bg.jpg");
    background-size: cover;
    background-position: bottom;
    transition: transform 0.3s ease;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card img:hover {
    transform: scale(1.5);
}

.border{
    margin-top: 50px;
    height: 100px;
    width: 100%;
    font-size: 50px;
}
.colum img{
    width: 100%;
    margin-bottom: 1rem;
}
.colum{
    columns: 340px;
}
.newsletter {
    width: 80%;
    background-color: rgb(67 11 102);
    color: #333;
    padding: 50px;
    text-align: center;
    margin-top: 2rem;
    border-radius: 230px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#form-section {
    height: 250px;
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.newsletter input {
    padding: 0.8rem;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter button {
    background-color: rgb(208, 58, 219);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #b667cf;
}


footer {
    width: 100%;
    background-color: #000000;
    color: #fff;
    padding: 1rem;
    text-align: center;
    height: 150px;
}

.social a {
    color: #ff8ba7;
    margin: 0 0.5rem;
    text-decoration: none;
}

footer .social a:hover {
    text-decoration: underline;
}