:root {
    --black: #111111;
    --gold: #CFB53B;
    --gray: #888888;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--black);
    color: var(--gold);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 10px;
    margin: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
    border: 2px solid var(--black);
}

::-webkit-scrollbar-thumb:hover {
    background: #e0c24d;
}

::-webkit-scrollbar-corner {
    background: var(--black);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Header Styles */
header {
    background-color: var(--black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(207, 181, 59, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    font-weight: 700;
    position: relative;
    color: var(--gold);
}

nav ul li a.active {
    color: var(--white);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn.active {
    color: var(--white);
}

/* Footer Styles */
footer {
    background-color: #0a0a0a;
    padding: 40px 0 20px;
    text-align: center;
    position: relative;
    margin-top: auto;
}

.quick-links-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.quick-link {
    font-weight: 700;
    color: var(--gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--gold);
}

.copyright {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Main Content Area */
main {
    flex: 1;
    width: 100%;
}

/* Section Styling */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gold);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(34, 34, 34, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://roshankc.pages.dev/assets/images/474593468_1149563980133001_8060805372338533784_n.jpg');
    background-size: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gold);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin-bottom: 40px;
    text-align: center;
}

.hero-image .profile-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 25px rgba(207, 181, 59, 0.3);
    transition: transform 0.3s ease;
}

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

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.about-image {
    text-align: center;
}

.about-image .profile-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gold);
}

.passion-section {
    margin-top: 30px;
}

.passion-section h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.passion-section p {
    margin-bottom: 20px;
    color: var(--gold);
}

/* Gallery Page Styles */
.gallery-section {
    padding: 40px 0;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-rectangle {
    width: 100%;
    height: 70vh;
    max-height: 800px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(207, 181, 59, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active,
.gallery-indicator:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gold);
}

.contact-details p {
    color: var(--gold);
}

.contact-details p a {
    color: var(--gold);
}

.contact-details p a:hover {
    color: var(--white);
}

.contact-form-fixed {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(207, 181, 59, 0.2);
}

.contact-form-fixed h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-col {
    flex: 1;
    min-width: 250px;
    padding: 0 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--gold);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--gold);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

/* Interests Section */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.interest-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(207, 181, 59, 0.2);
    transition: transform 0.3s ease;
}

.interest-card:hover {
    transform: translateY(-5px);
}

.interest-icon {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 20px;
}

.interest-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.interest-card p {
    color: var(--gold);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* 404 Page Styles */
.error-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 20px;
    margin: 0 auto;
}

.error-content {
    max-width: 600px;
    width: 100%;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 2px solid rgba(207, 181, 59, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin: 0 auto;
}

.error-icon {
    color: var(--gold);
    font-size: 5rem;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.error-content h1 {
    font-size: 8rem;
    margin-bottom: 10px;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.error-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold);
    line-height: 1.8;
}

.error-submessage {
    font-size: 1rem;
    margin-bottom: 35px;
    color: var(--gold);
    opacity: 0.8;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
}

.error-actions .btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-top: 1px solid rgba(207, 181, 59, 0.2);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .hero-image .profile-photo {
        width: 180px;
        height: 180px;
    }
    
    .about-image .profile-photo {
        max-width: 300px;
    }
    
    .gallery-rectangle {
        height: 50vh;
        min-height: 400px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    /* 404 Responsive */
    .error-content h1 {
        font-size: 6rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-icon {
        font-size: 4rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 220px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .contact-form-fixed {
        padding: 20px;
    }
    
    .hero-image .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .about-image .profile-photo {
        max-width: 250px;
    }
    
    .gallery-rectangle {
        height: 40vh;
        min-height: 300px;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 10px;
        right: 10px;
    }
    
    /* 404 Responsive */
    .error-content {
        padding: 40px 25px;
    }
    
    .error-content h1 {
        font-size: 5rem;
    }
    
    .error-content h2 {
        font-size: 1.8rem;
    }
    
    .error-icon {
        font-size: 3.5rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    /* Scrollbar for mobile */
    ::-webkit-scrollbar {
        width: 8px;
    }
}