/* Custom Font Declarations */
@font-face {
    font-family: 'Atteron';
    src: url('Atteron Personal Use Only.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Olivera';
    src: url('Olivera_Demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Josefin';
    src: url('josefin-sans.regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gralice';
    src: url('gralice-roman.regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Calgary';
    src: url('Calgary_DEMO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('./raleway.regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: #fcfcfc;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 26, 26, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 60% 30%, rgba(26, 26, 26, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: #1a1a1a;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background Decorations - Removed */
/*
.bg-decoration {
    position: fixed;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    background: #1a1a1a;
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    background: #3a3a3a;
    top: 60%;
    right: -40px;
    animation-delay: 2s;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    background: #1a1a1a;
    bottom: 20%;
    left: 20px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}
*/

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.profile-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #1a1a1a, #3a3a3a, #1a1a1a);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

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

.business-name {
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(26, 26, 26, 0.1);
    font-family: 'Atteron', 'Playfair Display', serif;
    letter-spacing: 8px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bio {
    font-size: 0.95rem;
    color: #3a3a3a;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Josefin', 'Poppins', sans-serif;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-top: 8px; /* Reduced padding to accommodate badge without extra spacing */
}

.link-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(26, 26, 26, 0.15),
        0 4px 12px rgba(26, 26, 26, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.2s; }
.link-item:nth-child(3) { animation-delay: 0.3s; }
.link-item:nth-child(4) { animation-delay: 0.4s; }
.link-item:nth-child(5) { animation-delay: 0.5s; }
.link-item:nth-child(6) { animation-delay: 0.6s; }
.link-item:nth-child(7) { animation-delay: 0.7s; }
.link-item:nth-child(8) { animation-delay: 0.8s; }

/* Removed sliding animation for consistency */

.link-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 25px 50px rgba(26, 26, 26, 0.2),
        0 10px 20px rgba(26, 26, 26, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 80px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
}

.link-item i:first-child {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-right: 1rem;
    width: 26px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
}

/* Specific fix for Threads icon alignment */
.link-item .fa-threads {
    transform: translateY(-1px);
}

.link-item span {
    flex: 1;
    font-family: 'Raleway', 'Poppins', sans-serif;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.link-item .arrow {
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.link-item:hover .arrow {
    transform: translateX(5px);
}

/* About Us Section */
.about-section {
    width: 100%;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.about-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d1b34;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
    font-family: 'Comfortaa', cursive;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cute-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.intro-accent {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 105, 180, 0.3);
}

.brand-name {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    color: #3a3a3a;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(255, 105, 180, 0.2);
}

.about-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d1b34;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    margin: 0;
}

.cute-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.divider-heart {
    font-size: 1.2rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.about-divider {
    flex: 1;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
    margin: 0;
}

.values-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(255, 105, 180, 0.2);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 182, 193, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 182, 193, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.value-icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    flex-shrink: 0;
}

.value-icon-container i {
    color: white;
    font-size: 1.2rem;
}

.value-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.value-name {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    font-size: 1rem;
    color: #2d1b34;
}

.value-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    color: #6b4c75;
    font-weight: 400;
}

.about-quote {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 182, 193, 0.15));
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    margin: 2rem 0;
    position: relative;
}

.quote-decoration {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.quote-mark {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: serif;
}

.about-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d1b34;
    margin: 1rem 0;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Dancing Script', cursive;
}

.about-quote cite {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
    font-style: normal;
    font-family: 'Quicksand', sans-serif;
}

.quote-stars {
    margin-top: 1rem;
    font-size: 1.2rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-cta-btn:hover::before {
    left: 100%;
}

.about-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
}

.about-cta-btn i {
    font-size: 1rem;
    animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-photo {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.about-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.about-photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 105, 180, 0.1);
}

.about-photo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
    border-color: #1a1a1a;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-photo:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 105, 180, 0.9));
    color: white;
    padding: 1rem 0.75rem 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-photo:hover .photo-overlay {
    transform: translateY(0);
}

.about-quote {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 182, 193, 0.1));
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(5px);
}

.about-quote blockquote {
    font-size: 1rem;
    font-style: italic;
    color: #2d1b34;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    font-weight: 400;
}

.about-quote cite {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 500;
    font-style: normal;
}

/* Social Section (removed since we deleted it) */

/* Footer */
.footer {
    text-align: center;
    color: #5a5a5a;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Josefin', 'Poppins', sans-serif;
    margin-top: 1rem;
    padding: 1rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glassGlow {
    0%, 100% {
        box-shadow: 
            0 12px 40px rgba(26, 26, 26, 0.15),
            0 4px 12px rgba(26, 26, 26, 0.1),
            inset 0 2px 0 rgba(255, 255, 255, 0.6),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1),
            inset 0 0 60px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 15px 45px rgba(26, 26, 26, 0.2),
            0 6px 15px rgba(26, 26, 26, 0.12),
            inset 0 2px 0 rgba(255, 255, 255, 0.8),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1),
            inset 0 0 80px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(255, 255, 255, 0.4);
    }
}

@keyframes glassShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 0.75rem;
    }
    
    .business-name {
        font-size: 2.2rem;
        font-family: 'Atteron', 'Playfair Display', serif;
        font-weight: 400;
        letter-spacing: 6px;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .link-item {
        padding: 0.875rem 1.25rem;
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 60px;
    }
    
    .link-item i:first-child {
        font-size: 1.3rem;
        margin-right: 0.875rem;
        width: 24px;
        height: 24px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        line-height: 1;
        transform: translateY(0px);
    }
    
    .link-item span {
        flex: 1;
        line-height: 1.2;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        transform: translateY(-1px);
        font-family: 'Raleway', 'Poppins', sans-serif;
    }
    
    .link-item .arrow {
        font-size: 0.8rem;
        margin-left: 0.5rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        line-height: 1;
        transform: translateY(-1px);
    }
    
    /* Mobile Threads icon fix */
    .link-item .fa-threads {
        transform: translateY(-2px) !important;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .about-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .about-text {
        padding: 1.25rem;
    }
    
    .about-intro {
        font-size: 0.9rem;
    }
    
    .about-values {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .value-item {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        width: 100%;
        max-width: 200px;
    }
    
    .value-item i {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    
    .main-photo {
        height: 150px;
    }
    
    .about-photos-grid {
        gap: 0.5rem;
    }
    
    .about-quote {
        padding: 1.25rem;
    }
    
    .about-quote blockquote {
        font-size: 0.95rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 182, 193, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #1a1a1a, #3a3a3a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #3a3a3a, #1a1a1a);
}

/* Loading animation for profile image */
.profile-image img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.profile-image img.loaded {
    opacity: 1;
}

/* Custom Threads icon styling */
.fa-threads::before {
    content: "@";
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    display: inline-block;
    transform: rotate(-10deg);
}
