* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans 3';
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #012e4c, #fa944685);
    color: #ffffff;
    line-height: 1.6;
}

header.hero {
    background: linear-gradient(to bottom, #31404a, #012e4c);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Front.JPG");
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    text-align: center;
    padding: 15rem;
    width: 100%;
    height: 100%;
}

#profile {
    border-radius: 10%;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-in;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 3rem;
    font-weight: 750;
    margin-bottom: 20px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    background: #ff8f00;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #ffb900;
}

.navbar {
    background: #1a1a1a;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    overflow: hidden;
    top: 0;
}

.navbar ul {
    list-style: none;
    font-size: 1.25rem;
    font-weight: 650;
    background: linear-gradient(#ffffff, #8a8a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar li {
    display: inline;
    margin: 0 15px;
}

.navbar li:hover {
    text-decoration: underline;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
}

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

.section h2 {
    margin-bottom: 20px;
    font-size: 4rem;
    color: #ffffff
}

.section h3 {
    color: white;
    font-size: 2.5rem;
}

.section p {
    font-size: 1.5rem
}

#about h2 {
    background: linear-gradient(#ffffff, #8a8a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#music {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Back.JPG");
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

#music h2 {
    background: linear-gradient(#ffffff, #8a8a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.music-columns {
    column-count: 2;
    column-width: 2rem;
}

.social-icons {
    display: inline-flex;
    margin: 15px;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 5rem;
    transition: 0.3s ease-in-out;
}

.social-icons .instagram {
    color: #c13584;
}

.social-icons .soundcloud {
    color: #ff7700;
}

.social-icons .spotify {
    color: #1ed760;
}

#contact {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 25px;
}

.email {
    color: white;
}

.music-list {
    list-style-type: none;
    padding: 0;
}

footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 15px;
}

audio {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
}

form {
    margin-top: 20px;
}

form input[type="email"] {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
}

form button {
    padding: 10px 20px;
    background: #ff007f;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background: #e60073;
}

.toggle-container {
    text-align: right;
    margin: 10px 0;
    margin-right: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 25px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
}

.slider:before {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    left: 3px;
    bottom: 2.5px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #ff007f;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.toggle-label {
    color: #fff;
    margin-left: 10px;
    vertical-align: middle;
}

body.light-mode {
    background-color: #f0f0f0;
    color: #111;
}

body.light-mode .navbar {
    background: #ddd;
}

body.light-mode .section h2 {
    color: #e60073;
}

body.light-mode .cta-button {
    background-color: #e60073;
}

body.light-mode .cta-button:hover {
    background-color: #ff007f;
}

body.light-mode .toggle-label {
    color: #000;
}

body.light-mode footer {
    background: #ccc;
    color: #333;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.gallery img {
    width: 150px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

@media only screen and (max-width:959px) {
    body:before {
        content: “”;
        background-image: url("wolf-background.png");
        background-size: cover;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/*@media screen and (-webkit-min-device-pixel-ratio:0) { 
    property: value;

    header.hero {
        background: linear-gradient(to bottom, #31404a, #012e4c);
        background-image: url("wolf-background.png");
        background-size: cover;
        background-position: top;
        background-attachment: fixed;
        text-align: center;
        padding: 150px 0;
        width: auto;
    }

}*/

@media only screen and (max-width:425px) {
    body {
        background: linear-gradient(to bottom, #fa9446, #012e4c);
        color: #ffffff;
        width: auto;
        height: auto;
    }

    header.hero {
        background: linear-gradient(to bottom, #31404a, #012e4c);
        background-image: url("wolf-background.png");
        background-size: cover;
        background-position: top;
        background-attachment: fixed;
        text-align: center;
        padding: 120px 0;
        width: auto;
    }

    .section p {
        font-size: 18px;
    }

    .navbar {
        background: #1a1a1a;
        text-align: center;
        position: sticky;
        overflow: hidden;
        top: 0
    }

    .navbar ul {
        list-style: none;
    }

    .navbar li {
        font-size: 15px;
    }

    .social-icons {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        font-size: 5rem;
        transition: 0.3s ease-in-out;
    }

    .latest {
        width: 85%;
    }
    
    .release {
        width: 85%;
    }
}
