@charset "utf-8";
/* CSS Document */

:root {
            --bg-color: #0a0a0a;
            --accent-color: #1a1a1a;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --border: #333333;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0; width: 100%;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(10,10,10,1), rgba(10,10,10,0));
        }

        .logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; letter-spacing: 2px; }
        .nav-links a { color: var(--text-main); text-decoration: none; margin-left: 2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

        /* Hero Section */
        header {
			height: 100vh;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			text-align: center;
			
			/* 1. The Image Link (Replace the URL below with your photo) */
			/* 2. The Linear Gradient (Creates a dark tint so text is readable) */
			background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
						url('../img/header_bg.jpg');
			
			background-size: cover;       /* Ensures the photo fills the screen */
			background-position: center;  /* Keeps the model centered */
			background-attachment: fixed; /* Optional: Creates a slight parallax scrolling effect */
		}

        header h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 10vw, 6rem); margin-bottom: 1rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Extra pop for the name */ }
        header p { font-weight: 300; letter-spacing: 4px; color: var(--text-dim); text-transform: uppercase; }

        /* Sections */
        section { padding: 100px 10%; max-width: 1400px; margin: 0 auto; }
        h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 3rem; border-bottom: 1px solid var(--border); padding-bottom: 10px; }

        /* Portfolio Grid */
        .portfolio {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .portfolio img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            filter: grayscale(40%);
            transition: 0.5s ease;
            cursor: pointer;
        }

        .portfolio img:hover { filter: grayscale(0%); transform: scale(1.02); }

        /* Services Table */
        .services-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }

        .services-table th, .services-table td {
            text-align: left;
            padding: 20px;
            border-bottom: 1px solid var(--border);
        }

        .services-table th { color: var(--text-dim); text-transform: uppercase; font-size: 0.8rem; }

        /* Contact Form */
        .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
        
        form { display: flex; flex-direction: column; }
        input, textarea {
            background: var(--accent-color);
            border: 1px solid var(--border);
            padding: 15px;
            margin-bottom: 15px;
            color: white;
            font-family: inherit;
        }

        button {
            background: white;
            color: black;
            border: none;
            padding: 15px;
            text-transform: uppercase;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        button:hover { background: var(--text-dim); }
		
		/* Fullscreen Lightbox Overlay */
		.lightbox {
			display: none;
			position: fixed;
			z-index: 2000;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.95);
			justify-content: center;
			align-items: center;
			cursor: zoom-out;
		}
		
		.lightbox img {
			max-width: 90%;
			max-height: 80%;
			box-shadow: 0 0 30px rgba(0,0,0,0.5);
			border: 1px solid var(--border);
		}
		
		.lightbox-close {
			position: absolute;
			top: 30px;
			right: 40px;
			color: white;
			font-size: 40px;
			font-weight: 300;
			cursor: pointer;
		}
		
		.booking-policy {
			background: var(--accent-color);
			border-left: 3px solid #ffffff; /* Minimalist white accent line */
			padding: 30px;
			margin-bottom: 40px;
		}
		
		.booking-policy h3 {
			text-transform: uppercase;
			font-size: 0.9rem;
			letter-spacing: 2px;
			margin-bottom: 15px;
			color: #fff;
		}
		
		.booking-policy p {
			color: var(--text-dim);
			margin-bottom: 15px;
			font-size: 0.95rem;
		}
		
		.booking-policy ul {
			list-style: none;
		}
		
		.booking-policy li {
			margin-bottom: 10px;
			font-size: 0.9rem;
			color: var(--text-main);
		}
		
		.booking-policy li strong {
			color: #fff;
			text-transform: uppercase;
			font-size: 0.8rem;
			margin-right: 5px;
		}
		
		/* Package Section Styling */
		.package-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			gap: 30px;
			margin-top: 20px;
		}
		
		.package-card {
			background: var(--accent-color);
			padding: 40px;
			border: 1px solid var(--border);
			text-align: center;
			transition: 0.3s ease;
		}
		
		.package-card:hover {
			border-color: #fff;
		}
		
		.package-card.highlight {
			border: 1px solid #fff;
			position: relative;
		}
		
		.package-card h3 {
			font-size: 0.8rem;
			letter-spacing: 2px;
			text-transform: uppercase;
			margin-bottom: 10px;
			color: var(--text-dim);
		}
		
		.price {
			font-family: 'Playfair Display', serif;
			font-size: 2.5rem;
			margin-bottom: 20px;
		}
		
		.buy-button {
			display: inline-block;
			margin-top: 25px;
			padding: 15px 30px;
			background: #fff;
			color: #000;
			text-decoration: none;
			font-weight: bold;
			font-size: 0.8rem;
			text-transform: uppercase;
			width: 100%;
			transition: 0.3s;
		}

		.buy-button:hover {
			background: var(--text-dim);
			color: #fff;
		}
		
		/* Minimalist Button Row */
		.button-row {
			display: flex;
			flex-wrap: wrap;
			gap: 20px;
			justify-content: flex-start; /* Aligns to left; change to 'center' if preferred */
		}
		
		.pay-btn {
			display: inline-block;
			padding: 15px 30px;
			border: 1px solid #fff; /* Clean white border */
			color: #fff;
			text-decoration: none;
			font-size: 0.85rem;
			text-transform: uppercase;
			letter-spacing: 1.5px;
			transition: all 0.4s ease;
			background: transparent;
		}
		
		.pay-btn:hover {
			background: #fff;
			color: #000; /* Inverts on hover */
		}

/* Mobile responsive: stack buttons on small screens */
@media (max-width: 768px) {
    .button-row {
        flex-direction: column;
    }
    .pay-btn {
        width: 100%;
        text-align: center;
    }
}

/* Ensure buttons are mobile-friendly */
@media (max-width: 600px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .contact-container { grid-template-columns: 1fr; }
            nav { padding: 1rem; }
            .nav-links { display: none; } /* Simplified for mobile */
            section { padding: 60px 5%; }
        }