/* ================================
   Layout Styles
   ================================ */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Top Bar - Minimal & Modern Design */
.top-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    animation: slideDown 0.6s ease-out;
    position: relative;
    z-index: 1001;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-link {
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    opacity: 0;
    animation: fadeInIcon 0.5s ease-out forwards;
}

.top-bar-link:nth-child(1) {
    animation-delay: 0.2s;
}

.top-bar-link:nth-child(2) {
    animation-delay: 0.3s;
}

.top-bar-link i {
    font-size: 0.9rem;
    color: #2d5a8f;
}

.top-bar-link:hover {
    color: #2d5a8f;
    transform: translateY(-1px);
}

.top-bar-link:hover i {
    color: #e91e63;
}

.top-bar-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    color: #6c757d;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    border-radius: 50%;
    transition: all var(--transition-normal);
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeInIcon 0.5s ease-out forwards;
}

.social-link:nth-child(1) {
    animation-delay: 0.4s;
}

.social-link:nth-child(2) {
    animation-delay: 0.5s;
}

.social-link:nth-child(3) {
    animation-delay: 0.6s;
}

.social-link:nth-child(4) {
    animation-delay: 0.7s;
}

.social-link:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.social-link:nth-child(1):hover {
    background: #3b5998; /* Facebook */
}

.social-link:nth-child(2):hover {
    background: #1da1f2; /* Twitter */
}

.social-link:nth-child(3):hover {
    background: #0077b5; /* LinkedIn */
}

.social-link:nth-child(4):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram */
}

/* Navbar - Modern Sticky Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    /* Removed scroll transition - navbar stays same size */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
    line-height: 1;
    height: 60px;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
}

/* Removed .navbar.scrolled styles - header stays static */

.navbar-menu {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.navbar-link {
    padding: 0.5rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d3e50;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.navbar-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #f06292);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link:hover::before {
    width: 100%;
}

.navbar-link:hover,
.navbar-link.active {
    color: #e91e63;
}

.navbar-link.active::before {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.btn-cta-nav {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #c2185b, #e91e63);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all var(--transition-fast);
}

/* Footer */
.footer {
    background: #2d3e50;
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col {
    padding-right: var(--spacing-sm);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.footer-text {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #bdc3c7;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #f39c12;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #bdc3c7;
}

.footer-contact i {
    color: #f39c12;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: #bdc3c7;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: #f39c12;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-icon:nth-child(1):hover {
    background: #3b5998; /* Facebook */
}

.footer-social-icon:nth-child(2):hover {
    background: #1da1f2; /* Twitter */
}

.footer-social-icon:nth-child(3):hover {
    background: #0077b5; /* LinkedIn */
}

.footer-social-icon:nth-child(4):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram */
}

.footer-social-icon:nth-child(5):hover {
    background: #ff0000; /* YouTube */
}
