/* Global Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Set uniform section width */
section {
    max-width: 400px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile, .portfolio {
    background: none;
    box-shadow: none;
    padding: 0;
}

/* Header */
header h1 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
}

.logo{
    margin-top: 20px;
    width: 100px;
}

/* Profile Image Stack */
.profile {
    position: relative;
    text-align: center;
}

.image-stack {
    position: relative;
    width: 350px;
    margin: auto;
}

.main-profile {
    position: relative;
    width: 100%;
    z-index: 2;
}

.profile p {
    margin-top: 25px;
    font-size: 15px;
    
}

.portfolio-container img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-container:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.nav-link {
    color: black;
    text-decoration: none;
}


/* Social Media Icons - Black & White */
.Social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    box-shadow: none;
    background: none;
}

.Social a {
    font-size: 20px;
    color: #f0f0f0;
    text-decoration: none;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: black;
    transition: transform 0.2s ease;
}

.Social a:hover {
    transform: scale(1.1);
    background-color: #282828;
}

/* YouTube Section */
.youtube .video {
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.youtube img {
    width: 100%;
    border-radius: 5px;
}

.youtube a {
    display: block;
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-top: 10px;
}

.youtube p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }
  
  #yt-watch-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background-color: #cc0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s ease;
  }
  
  #yt-watch-btn:hover {
    background-color: #e60000;
  }
  

/* Subscription Form */
.subscribe input {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.subscribe button {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}

.subscribe button:hover {
    background-color: #333;
}


/* Music Podcast */
.music iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* Portfolio Section */
.portfolio {
    text-align: center;
    margin-top: 20px;
}

.portfolio img {
    max-width: 100%;
    width: 100%;
    max-width: 400px; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.portfolio-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
}

.portfolio-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.portfolio-container:hover img {
    transform: scale(1.05);
}

/* Footer Social Icons */
footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

@media (max-width: 400px) {
    .image-stack {
        width: 100%;
    }

    .subscribe input, .subscribe button {
        font-size: 14px;
    }

    header h1 {
        font-size: 22px;
    }

    .youtube .video {
        padding: 8px;
    }
}
