/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, rgba(102,126,234,0.7) 0%, rgba(118,75,162,0.7) 100%), url('background.jpg') center center/cover no-repeat fixed;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo section */
.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.logo-content {
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    max-width: 100%;
    max-height: 100%;
}

.logo-content svg {
    width: 60px;
    height: 60px;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Links section */
.links-section {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.link-button::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;
}

.link-button:hover::before {
    left: 100%;
}

.link-button.primary {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
}

.link-button.primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-button.secondary {
    background: rgba(255, 255, 255, 0.85);
    color: #764ba2;
}

.link-button.secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-button.tertiary {
    background: rgba(255, 255, 255, 0.75);
    color: #667eea;
}

.link-button.tertiary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 24px;
}

.link-text {
    flex: 1;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Dropdown styles */
.dropdown-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 12px;
    margin-top: 0.5rem;
    z-index: 10;
    padding: 0.5rem 0;
    animation: dropdownFadeIn 0.25s ease;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: #764ba2;
}

.social-dropdown-toggle {
    position: relative;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.9em;
    color: #667eea;
    transition: transform 0.2s;
}

.social-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-10px) translateX(-50%); }
    to { opacity: 1; transform: translateY(0) translateX(-50%); }
}

/* Responsive design */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .logo-content svg {
        width: 50px;
        height: 50px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .links-section {
        gap: 0.8rem;
    }
    
    .link-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .link-icon {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
    
    .dropdown-menu {
        min-width: 140px;
        left: 50%;
        transform: translateX(-50%);
    }
    .dropdown-item {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 1rem 0.8rem;
    }
    
    .logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .logo-content svg {
        width: 45px;
        height: 45px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .link-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

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

.logo-section {
    animation: fadeInUp 0.8s ease-out;
}

.links-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Where are we modal styles */
.wherearewe-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}
.wherearewe-modal.show {
    display: flex;
}
.wherearewe-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    max-width: 350px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    animation: modalFadeIn 0.25s cubic-bezier(.4,1.4,.6,1) both;
}
.wherearewe-close {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #764ba2;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
    z-index: 2;
}
.wherearewe-close:hover {
    color: #667eea;
}
.wherearewe-details {
    font-size: 1rem;
    color: #333;
    margin-top: 0.5rem;
    text-align: left;
    line-height: 1.5;
}
@media (max-width: 480px) {
    .wherearewe-modal-content {
        max-width: 95vw;
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .wherearewe-details {
        font-size: 0.97rem;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Catalogue modal styles */
.catalogue-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}
.catalogue-modal.show {
    display: flex;
}
.catalogue-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    max-width: 500px;
    width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    animation: modalFadeIn 0.25s cubic-bezier(.4,1.4,.6,1) both;
}
.catalogue-close {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #764ba2;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
    z-index: 2;
}
.catalogue-close:hover {
    color: #667eea;
}
.catalogue-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.catalogue-img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #f3f4f6;
}
@media (max-width: 600px) {
    .catalogue-modal-content {
        max-width: 98vw;
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .catalogue-img {
        width: 100px;
        height: 70px;
    }
} 