/* RESET + BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color:#d3dae5;
    background: #09090a;
    line-height: 1.6;
}

/* HEADINGS & LINKS */
h3 {
    font-family: 'Playfair Display', serif;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color:#09090a;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    margin:0 auto ;
    position:absolute ;
    left:50% ;
    transform: translateX(-50%);
    color: #232324 ;
}

.logo p {
    font-family: 'Playfair Display', serif;  
    color:#a7bfdb ;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #c5ccd8 ;
}

/* HERO SECTION */
.hero {
    background: url('images/homepage (1).png') center/cover no-repeat;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align:center;
}

.center-text {
    position:absolute;
    top:75% ;
    left:50% ;
    color:white ;
    transform:translateX(-50%);
    font-family: 'Playfair Display', serif;
}

.center-text h1 {
    position:relative ;
    top:-60px ;
    letter-spacing:2px ;
}

.music {
    background-color:rgba(0,0,0,0.5);
    bottom:50px;
}

.hero h2 {
    padding-bottom:15px ;
    font-family: 'Playfair Display', serif;
    color: white;
}

.hero p{
    font-family: 'Playfair Display', serif;
    color: white;
    letter-spacing: 0.5px ;
}

/* ABOUT SECTION */
.about{
    padding: 40px 20px;
    text-align: center;
    background:#09090a;
}

.about h2{
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px ;
    color: #a7bfdb;
    margin-bottom: 10px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    padding-top:10px ;
    font-size: 1rem;
}

/* IMAGE GRID */
.grid {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center;
}

figure {
    border: 3px solid #09090a;
    max-width: 250px;
    width: 90%;
    margin: 2% auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

figure:hover {
    transform: scale(1.03);
    box-shadow: 6px 6px 12px #a7bfdb;
}

figure img {
    width:100%;
    height:100%;
    object-fit:cover;
}

figcaption {
    padding: 2%;
    border-top: 3px solid #09090a;
    position: relative;
    font-size: 0.9rem;
    text-align: center;
}

figcaption::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #a7bfdb;
    margin: 8px auto 0;
}

/* SOCIALS SECTION */
.socials {
    text-align: center;
    padding: 30px;
}

.socials h2 {
    font-family: 'Playfair Display', serif;
    color: #a7bfdb;
    margin-bottom: 20px;
}

.socials .icons a {
    display: inline-block;
    margin: 10px 15px;
    font-size: 1.1rem;
    color: #a7bfdb;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.socials .icons a i {
    margin-right: 8px;
    font-size: 1.3rem;
    vertical-align: middle;
}

.socials .icons a:hover {
    transform: scale(1.1);
    color: #c5ccd8;
    text-shadow: 0 0 8px #a7bfdb;
}

/* CONTACT FORM */
.contact {
    text-align: center;
    padding: 40px;
}

.contact h1 {
    font-family: 'Playfair Display', serif;
    color: #a7bfdb;
    margin-bottom: 10px;
}

.contact p {
    margin-bottom: 30px;
}

.contact form {
    background: rgba(15,15,17,0.6);
    backdrop-filter: blur(6px);
    border: 1px solid #a7bfdb66;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, 
.contact textarea {
    width: 90%;
    max-width: 500px;
    padding: 10px;
    border: 2px solid #a7bfdb;
    background: #0f0f11;
    color: #d3dae5;
    font-family: 'Raleway', sans-serif;
}

.contact button {
    padding: 10px 25px;
    border: none;
    background: #a7bfdb;
    color: #09090a;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
}

.contact button:hover {
    background: #c5ccd8;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #09090a;
    color: #7c90a7;
}

/* ANIMATED UNDERLINE EFFECT */
.nav-links a::after, .socials .icons a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #a7bfdb;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-links a:hover::after, .socials .icons a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* FLOATING GRADIENT BACKGROUND SHAPES */
body::before, body::after {
    content: "";
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite alternate;
}

body::before {
    background: #a7bfdb;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

body::after {
    background: #7c90a7;
    bottom: 10%;
    right: -100px;
    animation-delay: 7s;
}

@keyframes float {
    0%   { transform: translateY(0) translateX(0) rotate(0deg); }
    50%  { transform: translateY(-50px) translateX(50px) rotate(30deg); }
    100% { transform: translateY(0) translateX(0) rotate(0deg); }
}
