/* Ashlyn's Page - Tropical Caribbean Theme */
/* Color Palette: 
   - Turquoise: #40E0D0 (main tropical water)
   - Deep Ocean Blue: #0077BE (deep water)
   - Sky Blue: #87CEEB (light sky/water)
   - Coral: #FF7F50 (coral reef orange)
   - Sandy Beige: #F4E4C1 (beach sand)
   - Seafoam: #98D8C8 (shallow water)
   - Deep Teal: #008B8B (dark accent)
*/

/* Hero Section */
.ashlyn-hero {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0077BE 0%, #40E0D0 50%, #87CEEB 100%);
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.ashlyn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 127, 80, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(152, 216, 200, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.ashlyn-hero-content {
    position: relative;
    z-index: 1;
}

.ashlyn-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 119, 190, 0.4);
    letter-spacing: 2px;
}

.ashlyn-hero-subtitle {
    font-size: 1.4rem;
    color: #F4E4C1;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 119, 190, 0.3);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Profile Image Circle */
.ashlyn-profile-image {
    margin-top: 1rem;
    display: inline-block;
}

.ashlyn-profile-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #40E0D0;
    box-shadow: 0 8px 32px rgba(0, 119, 190, 0.4),
                0 0 40px rgba(64, 224, 208, 0.6);
    transition: all 0.3s ease;
}

.ashlyn-profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 119, 190, 0.6),
                0 0 60px rgba(64, 224, 208, 0.8);
    border-color: #FF7F50;
}

/* Content Section */
.ashlyn-content-section {
    min-height: 400px;
    background: linear-gradient(to bottom, #87CEEB 0%, #F4E4C1 100%);
    padding: 60px 20px;
}

/* Empty State */
.ashlyn-empty-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 119, 190, 0.2);
    border: 3px solid #40E0D0;
}

.ashlyn-empty-state h2 {
    font-size: 2.2rem;
    color: #0077BE;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(64, 224, 208, 0.3);
}

.ashlyn-empty-state p {
    font-size: 1.2rem;
    color: #008B8B;
    margin-bottom: 1.5rem;
}

.ashlyn-empty-state .upload-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #40E0D0 0%, #0077BE 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4);
}

.ashlyn-empty-state .upload-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.6);
    background: linear-gradient(135deg, #0077BE 0%, #40E0D0 100%);
}

/* Gallery Component Overrides for Tropical Theme */
/* Sideways Scroll Gallery */
.ashlyn-page .gallery-component[data-gallery-type="sideways-scroll"] {
    background: linear-gradient(135deg, #0077BE 0%, #40E0D0 50%, #87CEEB 100%) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="sideways-scroll"] .gallery-card {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 32px rgba(0, 119, 190, 0.3), 
                0 0 20px rgba(64, 224, 208, 0.4) !important;
    border: 2px solid rgba(64, 224, 208, 0.5) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="sideways-scroll"] .gallery-title {
    color: #0077BE !important;
}

.ashlyn-page .gallery-component[data-gallery-type="sideways-scroll"] .gallery-description {
    color: #008B8B !important;
}

/* Leaning Cards Gallery */
.ashlyn-page .gallery-component[data-gallery-type="leaning-cards"] {
    background: linear-gradient(135deg, #0077BE 0%, #40E0D0 100%) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="leaning-cards"] .card {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 40px rgba(0, 119, 190, 0.4) !important;
    border: 3px solid rgba(64, 224, 208, 0.6) !important;
}

/* Grid Gallery */
.ashlyn-page .gallery-component[data-gallery-type="grid"] {
    background: linear-gradient(to bottom, #87CEEB 0%, #F4E4C1 100%) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="grid"] .grid-item {
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.3) !important;
    border: 2px solid rgba(64, 224, 208, 0.4) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="grid"] .grid-item:hover {
    box-shadow: 0 12px 30px rgba(64, 224, 208, 0.5) !important;
    border-color: #40E0D0 !important;
}

.ashlyn-page .gallery-component[data-gallery-type="grid"] .overlay {
    background: linear-gradient(to top, rgba(0, 119, 190, 0.9), transparent) !important;
}

/* Rotating Cards Gallery */
.ashlyn-page .gallery-component[data-gallery-type="rotating-cards"] {
    background: linear-gradient(135deg, #87CEEB 0%, #40E0D0 100%) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="rotating-cards"] .card {
    box-shadow: 0 15px 50px rgba(0, 119, 190, 0.4) !important;
    border: 3px solid rgba(64, 224, 208, 0.6) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="rotating-cards"] .controls button {
    background: linear-gradient(135deg, #40E0D0, #0077BE) !important;
    border: 2px solid white !important;
}

.ashlyn-page .gallery-component[data-gallery-type="rotating-cards"] .controls button:hover {
    background: linear-gradient(135deg, #0077BE, #40E0D0) !important;
    transform: scale(1.1) !important;
}

.ashlyn-page .gallery-component[data-gallery-type="rotating-cards"] .counter {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 119, 190, 0.6) !important;
}

/* Gallery Headers */
.ashlyn-page .gallery-component .gallery-header h2,
.ashlyn-page .gallery-component .gallery-title {
    color: #0077BE !important;
    text-shadow: 1px 1px 3px rgba(64, 224, 208, 0.3) !important;
}

.ashlyn-page .gallery-component .gallery-header p,
.ashlyn-page .gallery-component .gallery-description {
    color: #008B8B !important;
}

/* Footer Overrides for Tropical Theme */
.ashlyn-page .footer {
    background: linear-gradient(to bottom, #0077BE, #008B8B) !important;
    color: #F4E4C1;
}

.ashlyn-page .footer-section h3 {
    color: #40E0D0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ashlyn-page .footer-links {
    list-style: none !important;
    padding-left: 0 !important;
}

.ashlyn-page .footer-links a {
    color: #98D8C8 !important;
    transition: color 0.3s ease;
}

.ashlyn-page .footer-links a:hover {
    color: #40E0D0 !important;
}

.ashlyn-page .footer-bottom {
    border-top-color: #40E0D0 !important;
}

.ashlyn-page .footer-bottom p {
    color: #87CEEB !important;
}

.ashlyn-page .social-link {
    color: #98D8C8 !important;
    background: rgba(64, 224, 208, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.ashlyn-page .social-link:hover {
    color: white !important;
    background: #40E0D0 !important;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ashlyn-hero-title {
        font-size: 2.5rem;
    }
    
    .ashlyn-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ashlyn-profile-image img {
        width: 180px;
        height: 180px;
        border-width: 4px;
    }
    
    .ashlyn-empty-state h2 {
        font-size: 1.8rem;
    }
    
    .ashlyn-empty-state p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ashlyn-hero-title {
        font-size: 2rem;
    }
    
    .ashlyn-hero-subtitle {
        font-size: 1rem;
    }
    
    .ashlyn-profile-image img {
        width: 140px;
        height: 140px;
        border-width: 3px;
    }
    
    .ashlyn-hero {
        padding: 60px 15px;
    }
    
    .ashlyn-content-section {
        padding: 40px 15px;
    }
    
    .ashlyn-empty-state {
        padding: 50px 20px;
    }
}
