/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section-image {
    width: 100vw;
    overflow: hidden;
}

.section-image img {
    display: block;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

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

/* Footer */
.footer {
    background: #2c1810;
    color: #d4c4a0;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(218,165,32,0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-content p:first-child {
    color: #DAA520;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(218, 165, 32, 0.6);
    width: 120px;
    border-radius: 30px;
}

.floating-btn-icon {
    font-size: 1.5rem;
    color: #2c1810;
    transition: all 0.3s ease;
}

.floating-btn-text {
    position: absolute;
    left: 20px;
    color: #2c1810;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
}

.floating-btn:hover .floating-btn-icon {
    transform: translateX(20px);
}

/* Pulse animation */
.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.3);
    transform: translate(-50%, -50%) scale(0);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-btn:hover {
        width: 110px;
    }
    
    .floating-btn-icon {
        font-size: 1.3rem;
    }
    
    .floating-btn-text {
        font-size: 0.8rem;
        left: 18px;
    }
    
    .floating-btn:hover .floating-btn-icon {
        transform: translateX(18px);
    }
}

@media (max-width: 480px) {
    .floating-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-btn:hover {
        width: 100px;
    }
    
    .floating-btn-icon {
        font-size: 1.2rem;
    }
    
    .floating-btn-text {
        font-size: 0.75rem;
        left: 15px;
    }
    
    .floating-btn:hover .floating-btn-icon {
        transform: translateX(15px);
    }
}
