html, body {
    margin: 0;
    padding: 0;
}
body {overflow-x: hidden; }
	
	/* Navbar specific styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 20px;
            background: linear-gradient(to right, rgba(51,255,255,0.3), rgba(255,102,204,0.3), rgba(255,255,102,0.3));
            color: #000;
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .navbar.scrolled {
            background: white;
            color: black;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .navbar-toggle {
            display: none;
            cursor: pointer;
            font-size: 22px;
        }
        .navbar a {
            color: inherit;
            text-decoration: none;
            margin: 0 15px;
            font-weight: 500;
        }
        .navbar .logo {
            font-size: 1.5em;
            font-weight: bold;
        }
        .navbar-menu {
            display: flex;
            align-items: center;
        }
        @media (max-width: 768px) {
            .navbar-toggle { display: block; }
            .navbar-menu {
                display: none;
                flex-direction: column;
                background: white;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
            }
            .navbar-menu.show { display: flex; }
            .navbar-menu a {
                padding: 10px;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            .auth-container {
                top: 60px; /* Adjust for navbar height */
                left: 0 !important; /* Align to left on small screens */
                right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 15px;
                box-sizing: border-box;
                border-radius: 0; /* No border-radius on full width */
            }
            .auth-container .auth-form {
                width: 100%;
            }
            .auth-container .auth-form input,
            .auth-container .auth-form button {
                width: 100%;
                box-sizing: border-box;
            }
        }
        
        /* Slider specific styles */
        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        .slider {
            display: flex;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }
        .slide {
            min-width: 100%;
            position: relative;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slide-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: none;
            font-size: 32px;
            padding: 5px 15px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10;
        }
        .slider-arrow.left { left: 20px; }
        .slider-arrow.right { right: 20px; }
        
        /* Auth Container specific styles */
        .auth-container {
            position: absolute; 
            top: 75px; 
            right: 20px; 
            z-index: 100; 
            background: linear-gradient(to right, rgba(51,255,255,0.3), rgba(255,102,204,0.3), rgba(255,255,102,0.3)); 
            padding: 40px; 
            border-radius: 8px; 
            max-width: 350px; 
            color: #000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Added shadow for better visibility */
        }
        .auth-tabs .btn {
            font-size: 1.1em;
            padding: 5px 15px;
            border-bottom: 2px solid transparent;
        }
        .auth-tabs .btn.active {
            border-bottom: 2px solid #000;
        }
        .auth-form input {
            font-size: 0.9em;
            padding: 10px;
        }

        /* Fotoso Section (Vendors & Functions) */
        .fotoso-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        .fotoso-section h4 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }
        .vendor-item-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
            text-align: center;
            transition: transform 0.3s ease;
            height: 100%; /* Ensure cards are same height */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .vendor-item-card:hover {
            transform: translateY(-5px);
        }
        .vendor-item-card .vendor-logo-display {
            max-width: 100px;
            height: auto;
            margin: 0 auto 15px auto;
            border-radius: 5px;
            border: 1px solid #eee;
        }
        .vendor-item-card h5 {
            font-size: 1.5rem;
            color: #007bff;
            margin-bottom: 15px;
        }
        .vendor-item-card .function-list {
            list-style: none;
            padding: 0;
            margin-top: 15px;
            text-align: left;
            flex-grow: 1; /* Allow function list to grow */
        }
        .vendor-item-card .function-list li {
            margin-bottom: 8px;
        }
        .vendor-item-card .function-list a {
            font-weight: normal;
            color: #555;
            display: block; /* Make the whole list item clickable */
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
        }
        .vendor-item-card .function-list a:hover {
            color: #007bff;
            text-decoration: none;
        }
        .vendor-item-card .function-list li:last-child a {
            border-bottom: none;
        }
        .vendor-item-card .function-description {
            font-size: 0.9em;
            color: #777;
            margin-top: 5px;
        }

        /* Benefits Section */
        .benefits-section {
            margin-top: 50px;
            padding: 30px;
            background-color: #e9f7ef;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .benefits-section h3 {
            color: #28a745;
            margin-bottom: 20px;
        }
        .benefits-section ul {
            list-style: none;
            padding-left: 0;
        }
        .benefits-section ul li {
            margin-bottom: 10px;
            font-size: 1.1em;
            color: #333;
        }
        .benefits-section ul li::before {
            content: "\2713"; /* Checkmark icon */
            color: #28a745;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* General styles from previous index.php (merged/adapted) */
        .container {
            padding-top: 20px;
            padding-bottom: 20px;
        }
        .element-title {
            font-family: 'Marcellus', serif; /* From new template */
        }
