@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	font-family: 'Special Elite', sans-serif;
    background-color: #f0f0f0;
}

header {
    background-color: #333;
    padding: 10px 0;
	align-items: center;
	justify-content: space-between;
}

.navbar {
    display: flex;
	background-color: #7895B2;
	align-items: center;
	height: 80px;
	position: fixed;
    top: 0;
    width: 100%;
        }

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; 
        }

li {
    margin: 0 15px;
        }

.navbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: lavender;
    color: black;
}

nav {
	flex: 1;
	text-align: right;
}

nav ul li {
	list-style: none;
	display: inline-block;
	margin-left: 60px;
	position: relative;
}

nav ul li a {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
}

.card {
	width: 200px;
	height: 230px;
	display: inline-block;
	border-radius: 10px;
	padding: 15px 25px;
	box-sizing: border-box;
	cursor: pointer;
	margin: 10px 15px;
	background-position: center;
	background-size: cover;
	transition: transform 0.5s;
}

.card1 {
	background-image: url("img/_ (18).jpeg");
}

.card2 {
	background-image: url("img/Sweetener album cover HD.jpeg");
}

.card3 {
	background-image: url("img/artwork-440x440-7-compressed.jpeg");
}

.card4 {
	background-image: url("img/artwork-440x440-9-compressed.jpeg");
}

.card:hover {
	transform: translateY(-10px);
}

.row {
	display: flex;
	height: 100vh;
	align-items: center;
	background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("img/bgg.jpeg");
	width: 100%;
	background-position: center;
	background-size: cover;
}

.col {
	flex-basis: 50%;
	margin-top: 5%;
	margin-left: 5%;
	margin-right: 5%;
}

#about {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

#about .content {
    max-width: 800px;
    margin: 0 auto 40px;
}

#about h2 {
    font-size: 50px;
    font-weight: 600;
    color: #333;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-col {
    flex: 1;
    max-width: 300px;
    margin: 0 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.about-col:hover {
    transform: translateY(-10px);
}

.about-col h3 {
    color: darkslateblue;
    font-family: 'Yeseva One', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-col p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

body {
    padding-top: 40px;
}

section {
    padding: 60px 0;
    text-align: center;
}

.gallery {
	height: 80%;
	width: 100%;
	display: flex;
	margin: 2% auto 0;
	box-sizing: border-box;
}

.image-box {
	margin: 0 1%;
	flex-grow: 1;
	flex-basis: 0;
	transition: 0.5s;
}

.image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.image-box:hover {
	flex-basis: 50%;
}

.active {
	flex-basis: 50%;
}

.gallery:hover .active {
	flex-basis: 0;
}

.image-box:nth-child(1):hover {
	flex-basis: 50%;
}

.social-icons {
    margin-top: 10px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    background-color: #7895B2;
    color: #fff;
    border-radius: 20px;
	margin-top: 30px;
    transition: background-color 0.3s ease;
}

.button:hover {
    border: 1px solid lavender;
	background:#C9ADFF;
	transition: 1s;
}

h1 {
	color: #fff;
	font-size: 100px;
}

h2 {
	font-size: 50px;
	font-weight: 600;
	text-align: center;
    color: #333;

}

h3 {
	color: #fff;
	font-family: 'Yeseva One', sans-serif;
	font-weight: 600;
	text-align: center;
	margin: 10px 0;
}

h4 {
	color: black;
	font-family: 'Yeseva One', sans-serif;
	text-shadow: 0 0 5px #999;
}

h5 {
	color: ghostwhite;
	font-family: 'Yeseva One', sans-serif;
	text-shadow: 0 0 5px #999;
}

h6 {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

a {
            text-decoration: none;
            color: darkslateblue; 
            font-weight: bold;
        }

a:hover {
            color: #1565c0; 
        }

p {
	color: #fff;
	font-size: 15px;
	line-height: 15px;
	text-align: justify;
}

footer {
	background:#3586FF;
	padding: 3%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.animated-footer {
    background-color:#2A2F4F;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

#contact .content {
    max-width: 800px;
    margin: 0 auto 40px;
}

#contact h6 {
    font-weight: 300;
    color: #666;
}

.contact-container {
    display: flex;
    justify-content: space-around;
}

.contact-info, .contact-form {
    flex: 1;
    max-width: 400px;
}

.contact-info .box, .contact-form form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info .box {
    display: flex;
    align-items: center;
	justify-content:space-around;
}

.contact-info .box .icon {
    min-width: 60px;
    height: 60px;
    background: #E8CDF7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
    margin-right: 15px;
}

.contact-form form {
    text-align: left;
}

.text h4 {
	color: black;
	font-family: 'Yeseva One', sans-serif;
	text-shadow: 0 0 5px #999;
	font-size: 20px;
}

.inputBox {
    position: relative;
    margin-bottom: 20px;
}

.inputBox input, .inputBox textarea {
    width: 100%;
    padding: 3px;
    font-size: 16px;
    margin: 5px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    transition: border-bottom-color 0.3s ease;
}

.inputBox input:focus, .inputBox textarea:focus {
    border-bottom-color: darkslateblue;
}

.inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 15px;
    margin: 5px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.inputBox input:focus ~ span,
.inputBox textarea:focus ~ span,
.inputBox input:valid ~ span,
.inputBox textarea:valid ~ span {
    color: darkslateblue;
    font-size: 12px;
    transform: translate(-20px);
}

.inputBox textarea {
    height: 100px;
    resize: none;
}

.inputBox input[type="submit"] {
    width: 100%;
    background: #A77BB4;
    border: none;
    cursor: pointer;
	margin-top: 30px;
    padding: 10px;
    font-size: 18px;
	font-family: Special Elite, Sans-serif;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.inputBox input[type="submit"]:hover {
    background: #C9ADFF;
}

/* Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.animated-footer:hover .social-icons {
    animation: bounce 1s infinite;
}


@media (max-width: 768px) {
#contact {
    padding: 30px 0;
    text-align: center;
}

#contact .content {
    margin-bottom: 20px;
}

.contact-form form {
    max-width: 100%;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
}

.inputBox textarea {
    height: 100px;
    resize: none;
}

.card {
	max-width: 100%;
	max-height: 130px;
	}
	
.about-container {
    display: flex;
}

.contact-info .box {
	max-width: 300px;
}

}
