/* ------------------------------
   General Reset
--------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: white;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: 1px;
}

p {
    font-weight: 300;
}

/* ------------------------------
   Navigation
--------------------------------*/

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 8%;

    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(0, 0, 0, 0.95);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.logo {
    background-image: url("../images/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: auto;
    display: block;

}


nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}


nav ul li a {

    color: white;
    text-decoration: none;

    padding: 10px 18px;

    border: 2px solid transparent;

    border-radius: 30px;

    transition: 0.3s ease;

    font-weight: 500;

}

nav ul li a:hover {

    background: white;
    color: black;

    border-color: white;

}

nav ul li a.active {

    background: white;
    color: black;

}

.page-header,
.hero {
    padding-top: 80px;
}

/* ------------------------------
   Hero Section
--------------------------------*/

.hero {

    height: 100vh;

    background:
            linear-gradient(
                    rgba(0,0,0,0.55),
                    rgba(0,0,0,0.8)
            ),
            url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

}



.hero-content {

    max-width: 900px;
    padding: 20px;

}


.hero-content h1 {

    font-size: 70px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;

}


.hero-content p {

    font-size: 20px;
    color: #ddd;
    margin-bottom: 35px;

}



/* ------------------------------
   Buttons
--------------------------------*/

.button {

    display: inline-block;
    padding: 14px 35px;

    background: white;
    color: black;

    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: 14px;
    font-weight: 600;

    border: 2px solid white;

    transition: 0.3s;

}

.button:hover {

    background: transparent;
    color: white;
    border-color: white;

}



/* ------------------------------
   Featured Gallery
--------------------------------*/

.featured {

    padding: 80px 8%;
    text-align: center;

}


.featured h2 {

    font-size: 40px;
    margin-bottom: 50px;
    text-transform: uppercase;

}



.gallery {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.card {

    background: #151515;

    overflow: hidden;

    transition: 0.4s;

}



.card img {

    width: 100%;
    height: 350px;

    object-fit: cover;

    transition: 0.4s;

}



.card h3 {

    padding: 20px;

    font-size: 22px;

}



.card:hover {

    transform: translateY(-10px);

}


.card:hover img {

    transform: scale(1.1);

}



/* ------------------------------
   Intro Section
--------------------------------*/

.intro {

    padding: 90px 15%;

    text-align: center;

    background: #111;

}


.intro h2 {

    font-size: 40px;

    margin-bottom: 25px;

}


.intro p {

    max-width: 800px;

    margin: auto;

    color: #ccc;

    font-size: 18px;

    margin-bottom: 35px;

}



/* ------------------------------
   Footer
--------------------------------*/

footer {

    padding: 30px;

    text-align: center;

    background: black;

    color: #777;

    font-size: 14px;

}



/* ------------------------------
   Mobile Responsive
--------------------------------*/

@media(max-width: 900px) {


    nav {

        flex-direction: column;

        gap: 20px;

    }


    nav ul {

        gap: 20px;

    }


    .hero-content h1 {

        font-size: 42px;

    }


    .gallery {

        grid-template-columns: 1fr;

    }


}

/* ------------------------------
   Contact Page
--------------------------------*/


.contact-section {

    display: flex;

    gap: 70px;

    padding: 100px 10%;

}



.contact-info {

    flex: 1;

}



.contact-info h2 {

    font-size: 40px;

    margin-bottom: 25px;

}



.contact-info p {

    color: #ccc;

    font-size: 17px;

    margin-bottom: 25px;

}



.details strong {

    color: white;

    font-size: 18px;

}




.contact-form {

    flex: 1;

}




.contact-form form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.contact-form input,
.contact-form textarea {


    width: 100%;

    padding: 18px;

    background: #151515;

    border: 1px solid #333;

    color: white;

    font-size: 16px;

    outline: none;

}



.contact-form input:focus,
.contact-form textarea:focus {

    border-color: white;

}



.contact-form button {

    padding: 18px;

    background: white;
    color: black;

    border: 2px solid white;

    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

}

.contact-form button:hover {

    background: transparent;
    color: white;

}





/* Social */

.social-section {

    text-align: center;

    padding: 70px 10%;

    background: #111;

}



.social-section h2 {

    font-size: 35px;

    margin-bottom: 15px;

}



.social-links {

    margin-top: 30px;

    display: flex;

    justify-content: center;

    gap: 40px;

}



.social-links a {

    color: white;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition: 0.3s;

}



.social-links a:hover {

    color: white;

}




@media(max-width:900px) {


    .contact-section {

        flex-direction: column;

    }


    .social-links {

        flex-direction: column;

        gap: 20px;

    }

}

/* ------------------------------
   Concert Portfolio
--------------------------------*/


.concert-banner {

    background:
            linear-gradient(
                    rgba(0,0,0,0.6),
                    rgba(0,0,0,0.85)
            ),
            url("images/concert-banner.jpg");

    background-size: cover;

    background-position: center;

}





.portfolio {

    padding: 80px 8%;

}





.filters {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-bottom: 50px;

}





.filters button {

    background: transparent;

    border: 1px solid #555;

    color: white;

    padding: 12px 30px;

    cursor: pointer;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition: 0.3s;

}




.filters button:hover,
.filters .active {

    background: white;
    color: black;
    border-color: white;

}







.photo-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}





.photo-card {

    position: relative;

    overflow: hidden;

    height: 400px;

}





.photo-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}





.photo-card:hover img {

    transform: scale(1.1);

}





.overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    padding: 30px;

    background:

            linear-gradient(
                    transparent,
                    rgba(0,0,0,0.9)
            );

}





.overlay h3 {

    font-size: 25px;

}



.overlay p {

    color: #ccc;

}





@media(max-width:900px){


    .photo-grid {

        grid-template-columns: 1fr;

    }


    .filters {

        flex-wrap: wrap;

    }


}

/* ------------------------------
   Blog Page
--------------------------------*/


.blog-banner {

    background:

            linear-gradient(
                    rgba(0,0,0,0.6),
                    rgba(0,0,0,0.85)
            ),

            url("images/blog-banner.jpg");

    background-size:cover;

    background-position:center;

}




.blog-container {

    display:grid;

    grid-template-columns: 3fr 1fr;

    gap:50px;

    padding:90px 8%;

}




.blog-posts h2,
.archive h2 {

    font-size:35px;

    margin-bottom:30px;

}





.post-card {

    display:flex;

    gap:30px;

    background:#151515;

    margin-bottom:40px;

    overflow:hidden;

}





.post-card img {

    width:300px;

    height:220px;

    object-fit:cover;

}





.post-card div {

    padding:25px;

}




.post-card h3 {

    font-size:25px;

    margin-bottom:10px;

}





.date {

    color:#ff3c3c;

    font-size:14px;

}





.post-card a {

    color:white;

    text-decoration:none;

}





.archive {

    background:#111;

    padding:30px;

    height:max-content;

}




.archive h3 {

    margin-top:25px;

}





.archive ul {

    list-style:none;

    margin-top:15px;

}





.archive li {

    margin-bottom:12px;

}





.archive a {

    color:#ccc;

    text-decoration:none;

    transition:.3s;

}





.archive a:hover {

    color:#ff3c3c;

}




@media(max-width:900px){


    .blog-container {

        grid-template-columns:1fr;

    }


    .post-card {

        flex-direction:column;

    }


    .post-card img {

        width:100%;

    }

}

/* Photography Sub Navigation */

.filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.filters a {
    color: #222;
    text-decoration: none;

    padding: 8px 18px;

    border: 2px solid transparent;

    border-radius: 30px;

    transition: 0.3s ease;

    font-weight: 500;
}

.filters a:hover {
    background: #222;
    color: white;

    border-color: #222;
}

.filters a.active {
    background: #222;
    color: white;
}