/* Main Stylesheet for Red Carpet Productions */

/* Variables */
:root {
    --primary-color: #e50914; /* Red */
    --secondary-color: #000000; /* Black */
    --accent-color: #d4af37; /* Gold for luxury feel */
    --text-color: #ffffff; /* White */
    --text-dark: #333333; /* Dark gray */
    --bg-light: #f8f8f8; /* Light background */
    --bg-dark: #111111; /* Dark background */
    --font-primary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: #c70812; /* Darker red */
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-dark:hover {
    background-color: #333333;
    color: var(--text-color);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.underline {
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    padding: 6px 0;
    transition: var(--transition);
}

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

.logo a {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.login-btn a {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 4px;
}

.login-btn a:hover {
    background-color: #c70812; /* Darker red */
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.5rem;
}

/* Search Form */
.search-icon {
    position: relative;
}

.search-icon i {
    color: var(--text-color);
    font-size: 1.1rem;
    cursor: pointer;
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: var(--bg-dark);
    padding: 15px;
    border-radius: 4px;
    display: none;
    z-index: 100;
}

.search-form.active {
    display: block;
}

.search-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
}

.search-form button {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.slide.current {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: url('../images/home-banner.png');
}

.slide:nth-child(2) {
    background-image: url('../images/home-banner2.png');
}

.slide:nth-child(3) {
    background-image: url('../images/banner\ 3.png');
}

.slide .content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.slide .content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide .content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.buttons {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 20;
    display: flex;
}

.buttons button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.buttons button:hover {
    background-color: #c70812; /* Darker red */
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--text-color);
}

.services .section-header h2 {
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Featured Models Section */
.featured-models {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.model-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.model-image {
    height: 350px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.model-info {
    padding: 20px;
    text-align: center;
}

.model-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.model-info p {
    color: #777;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--text-color);
    overflow: hidden; /* Prevent horizontal scrollbar */
}

.brands-section .section-header h2 {
    color: var(--text-color);
}

/* Container for the slider */
.brands-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}

/* === Brand slider: horizontal scroll + smooth + snap (NO buttons) === */
.brands-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
  touch-action: pan-y;
}

.brands-slider:active { cursor: grabbing; }

.brand-logo {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.brand-logo img {
  display: block;
  user-select: none;
  pointer-events: none;
  height: auto;
  max-height: 70px;
}

.brands-slider::-webkit-scrollbar { display: none; }
.brands-slider { scrollbar-width: none; }


.brand-logo {
    margin: 0 10px;
    padding: 12px; /* thoda kam padding takki size control rahe */
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.brand-logo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.brand-logo img {
    max-width: 100%;
    max-height: 50px;
    filter: brightness(0) invert(1);
}


/* Call to Action */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn {
    background-color: var(--text-color);
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

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

.cta .btn-outline:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-logo p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #c70812; /* Darker red */
}
/* ===== NAVBAR SIZE OVERRIDES (added by you) ===== */
.navbar {
  padding: 8px 0 !important; /* reduce height of navbar */
}

.navbar img, .logo img {
  height: 60px;   /* set logo height (try 42px, 36px, 48px etc) */
  width: auto;
  display: block;
}

/* make menu text slightly smaller */
.nav-menu li a {
  font-size: 0.88rem !important;
  padding: 8px 0 !important;
}
