/* Custom CSS for Gino Rosaria Website */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./Images/banner-photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2),
        -2px -2px 0 #8B5CF6,
        -2px 2px 0 #8B5CF6,
        2px -2px 0 #8B5CF6,
        2px 2px 0 #8B5CF6,
        -1px -1px 0 #8B5CF6,
        -1px 1px 0 #8B5CF6,
        1px -1px 0 #8B5CF6,
        1px 1px 0 #8B5CF6;
    animation: hero-glow 3s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.2),
            -2px -2px 0 #8B5CF6,
            -2px 2px 0 #8B5CF6,
            2px -2px 0 #8B5CF6,
            2px 2px 0 #8B5CF6,
            -1px -1px 0 #8B5CF6,
            -1px 1px 0 #8B5CF6,
            1px -1px 0 #8B5CF6,
            1px 1px 0 #8B5CF6;
    }
    100% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 1),
            0 0 25px rgba(255, 255, 255, 0.8),
            0 0 35px rgba(255, 255, 255, 0.6),
            0 0 45px rgba(255, 255, 255, 0.4),
            -2px -2px 0 #8B5CF6,
            -2px 2px 0 #8B5CF6,
            2px -2px 0 #8B5CF6,
            2px 2px 0 #8B5CF6,
            -1px -1px 0 #8B5CF6,
            -1px 1px 0 #8B5CF6,
            1px -1px 0 #8B5CF6,
            1px 1px 0 #8B5CF6;
    }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-section .lead {
    font-weight: 700 !important;
    text-shadow: 
        -2px -2px 0 #8B5CF6,
        -2px 2px 0 #8B5CF6,
        2px -2px 0 #8B5CF6,
        2px 2px 0 #8B5CF6,
        -1px -1px 0 #8B5CF6,
        -1px 1px 0 #8B5CF6,
        1px -1px 0 #8B5CF6,
        1px 1px 0 #8B5CF6;
}

.hero-section .hero-subtitle {
    font-size: 1.5rem;
}

.hero-buttons .btn {
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hero Social Media Icons */
.hero-social {
    text-align: center;
}

.hero-social .social-icon {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 10px;
    text-shadow: 
        -2px -2px 0 #8B5CF6,
        -2px 2px 0 #8B5CF6,
        2px -2px 0 #8B5CF6,
        2px 2px 0 #8B5CF6,
        -1px -1px 0 #8B5CF6,
        -1px 1px 0 #8B5CF6,
        1px -1px 0 #8B5CF6,
        1px 1px 0 #8B5CF6;
}

.hero-social .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    color: #8B5CF6 !important;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.hero-social .social-icon i {
    transition: all 0.3s ease;
}

.hero-social .social-icon:hover i {
    transform: scale(1.2);
}

/* About Section */
.about-feature {
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature i {
    transition: color 0.3s ease;
}

.about-feature:hover i {
    color: #0d6efd !important;
}

/* Services Section */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Media Section */
.media-column-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.media-column {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.media-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.media-column:hover::before {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.media-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.media-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.media-column:hover .media-title {
    transform: scale(1.1);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}

.media-column:hover {
    transform: scale(1.02);
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 0;
}

/* Carousel Styling */
.carousel-item img {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-radius: 0 0 15px 15px;
    padding: 20px;
}

.carousel-caption h5 {
    color: #8B5CF6;
    font-weight: bold;
    margin-bottom: 10px;
}

.carousel-caption p {
    color: white;
    margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid white;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(124, 58, 237, 0.9);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe {
    border-radius: 10px;
}

/* Music Item Styling */
.music-item {
    padding: 20px;
}

.music-item img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.music-item h5 {
    color: #8B5CF6;
    font-weight: bold;
    margin-top: 15px;
}

.music-item p {
    color: #666;
    margin-bottom: 20px;
}

.music-item audio {
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.card img {
    transition: transform 0.3s ease;
}

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

/* Button Overrides - Purple Theme */
.btn-primary {
    background-color: #8B5CF6 !important;
    border-color: #8B5CF6 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #7C3AED !important;
    border-color: #7C3AED !important;
    color: #fff !important;
}

.btn-primary:focus {
    background-color: #8B5CF6 !important;
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25) !important;
}

.btn-primary:active {
    background-color: #7C3AED !important;
    border-color: #7C3AED !important;
}

/* Store Section */
.paypal-cart-button {
    margin-left: 10px;
}

.store-item {
    transition: all 0.3s ease;
    overflow: hidden;
}

.store-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.store-image-container {
    position: relative;
    overflow: hidden;
}

.store-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-item:hover .store-image {
    transform: scale(1.05);
}

.store-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.store-badge {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.store-price {
    text-align: center;
}

.store-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B5CF6;
    text-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.store-item .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.store-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 92, 246, 0.3);
}

/* Signup Section - Center mc_embed_signup div */
#mc_embed_signup {
    margin: 0 auto;
    text-align: center;
}

/* Contact Information */
.contact-info {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #8B5CF6;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info a {
    color: #8B5CF6;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #7C3AED;
    text-decoration: underline !important;
}

/* Contact Form */
.form-control:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #8B5CF6 !important;
}

/* Navigation */
.navbar-brand-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.artist-name {
    /* font-family: 'Georgia', 'Times New Roman', serif; */
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.artist-name:hover {
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
}

.artist-title {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #ccc;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.navbar-nav .nav-link {
    font-family: 'Arial', sans-serif;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #8B5CF6, #7C3AED);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: #8B5CF6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-social .social-icon {
        margin: 0 8px;
        font-size: 1.5rem !important;
    }
    
    .navbar-brand-container {
        align-items: center;
        text-align: center;
    }
    
    .artist-name {
        font-size: 1.5rem;
    }
    
    .artist-title {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    /* Fix navbar horizontal scroll */
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 5px 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        display: block;
        width: 100%;
    }
    
    .navbar-brand-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .artist-name {
        font-size: 1.3rem;
    }
    
    .artist-title {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .navbar-brand-container {
        margin-bottom: 5px;
    }
    
    .artist-name {
        font-size: 1.2rem;
    }
    
    .artist-title {
        font-size: 0.6rem;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .media-column {
        height: 40vh;
    }
    
    .media-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom utilities */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
