/* created by Robot 1809 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Karla:400|Spectral:400');

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

html {
  font-size: 100%;
}/*16px*/

:root {
  /* colors */
  /* primary */
  --primary-100: #e0deff;
  --primary-200: #c1beff;
  --primary-300: #a29dff;
  --primary-400: #837dff;
  --primary-500: #645cff;
  --primary-600: #504acc;
  --primary-700: #3c3799;
  --primary-800: #282566;
  --primary-900: #141233;
  /* /primary */

  /* grey */
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  /* /grey */

  /* default colors */
  --black: #222;
  --white: #fff;
  --red-light: #f8d7da;
  --red-dark: #842029;
  --green-light: #d1e7dd;
  --green-dark: #0f5132;

  /* fonts */
  --headingFont: 'Spectral', serif;
  --bodyFont: 'Karla', sans-serif;
  --smallText: 0.7em;

  /* rest of the vars */
  --backgroundColor: var(--grey-50);
  --textColor: var(--grey-900);
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;

  /* box-shadows */
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

}

body {
  background: #1a1a1a;
  /* font-family: ; */
  /* padding: 0 2rem; */
  font-weight: 400;
  line-height: 1.75;
  color: #fff;  
}

p {
  margin-bottom: 1.5rem;
  max-width: 40em;
}

h1,
h2,
h3,
h5 {
  margin: 0;
  margin-bottom: 1.38rem;
  font-family: var(--headingFont);
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--white);
  text-align: center;
}

h1 {
  margin-top: 1rem;
  font-size: 3.052rem;
}

h2 {
  margin-top: 1rem;
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

small,
.text-small {
  font-size: var(--smallText);
}

a {
  text-decoration: none;
  color: var(--primary-500);
}

ul {
  list-style-type: none;
  padding: 0;
  color: var(--primary-500);
}

.container {
  /* width: 90vw; */
  border: 5px solid var(--primary-500);
  border-radius: var(--borderRadius);
  /* max-width: var(--max-width); */
  margin-bottom: 1rem;
  /* padding-top: 2rem; */
  padding: 2rem;
}

.img {
  width: 250px;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  opacity: .3;
}

/* buttons */
.btn {
  cursor: pointer;
  color: var(--white);
  background: var(--grey-300);
  border: transparent;
  border-radius: var(--borderRadius);
  letter-spacing: var(--letterSpacing);
  padding: 0.375rem 0.75rem;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  text-transform: capitalize;
  display: inline-block;
}

.btn:hover {
  background: var(--primary-300);
  box-shadow: var(--shadow-3);
}

.btn-hipster {
  color: var(--primary-500);
  background: var(--primary-200);
}

.btn-hipster:hover {
  color: var(--primary-200);
  background: var(--primary-700);
}

.btn-block {
  width: 100%;
}

/* alerts */
.alert {
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border-color: transparent;
  border-radius: var(--borderRadius);
}

.alert-danger {
  color: var(--red-dark);
  background: var(--red-light);
}

.alert-success {
  color: var(--green-dark);
  background: var(--green-light);
}

/* form */
/* form {
  width: 90vw;
  max-width: var(--fixed-width);
  background: white;
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-2);
  padding: 2rem 2.5rem;
  margin: 3rem auto;
}

.form-label {
  display: block;
  font-size: var(--smallText);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
  color: var(--black);

}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  border: 1px solid var(--grey-200);
}

.form-row {
  margin-bottom: 1px;
}

.form-textarea {
  height: 7rem;
}

::placeholder {
  font-family: inherit;
  color: var(--grey-400);
}

.form-alert {
  color: var(--red-dark);
  letter-spacing: var(--letterSpacing);
  text-transform: capitalize;
} */

/* loading */

/* @keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  width: 6rem;
  height: 6rem;
  border: 5px solid var(--grey-400);
  border-radius: 50%;
  border-top-color: var(--primary-500);
  animation: spinner 0.6s linear infinite;
}

.loading {
  margin: 0 auto;
} */

/* /loading */

/* title */

.title {
  text-align: center;
}

.title-underline {
  background: var(--primary-500);
  width: 7rem;
  height: 0.25rem;
  margin: 0 auto;
  margin-top: -1.4rem;
  margin-bottom: 1rem;
}

/* 
==================
Navbar
==================
*/
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: blue; */
  margin-top: 0;
}

.nav-center {
  width: 90vw;
  max-width: var(--max-width);
  /* background: red; */
}
.nav-header {
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav header a {
  width: 200px;
}

.nav-btn  {
  padding: 0.15rem 0.75rem;
}

.nav-btn i {
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  flex-direction: row;
  /* todo */
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.show-links {
  height: 175px;
}

.nav-link {
  display: block;
  text-align: center;
  text-transform: capitalize;
  /* color: ; */
  /* letter-spacing: ; */
  padding: 1rem 0;
  border-top: 1px solid gray;
  /* transition: ; */
}

.nav-link:hover {
  color: var(--grey-300);
}

@media screen and (min-width:62em) {
  .nav-btn {
    display: none;
  }
  .navbar {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-center {
    display: flex;
    align-items: center;
  }
  .nav-header {
    height: auto;
    margin-right: 2rem;
  }
  .nav-links {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    /* margin-left: auto; */
  }
  .nav-link {
    padding: 0;
    border-top: 0;
    margin-right: 1rem;
    font-size: 1rem;

  }
}

/* 
==================
Page
==================
*/
/* .page {
  width: 90vw;
  max-width: var(--max-width);
  margin: 0 auto; */
  /* padding-top: 2rem; */
  /* min-height: calc(100vh - (6rem + 4rem));
  
} */

/* 
==================
Hero
==================
*/

/* ================ HEADER/HERO SECTION ================ */
header {
    width: 100%;
    min-height: 100vh; /* Ensures the header section always takes up at least the full screen height */
    display: flex; /* Use flexbox to center the hero-container */
    justify-content: center; /* Horizontally centers the hero-container */
    align-items: center;   /* Vertically centers the hero-container */
    padding: 6rem 0 5rem; /* Sufficient top padding for fixed nav, bottom padding for spacing */
    
    /* --- CORRECTED BACKGROUND IMAGE STYLES --- */
    background-image: url(../assets/Snow.jpg); /* Your image path */
    background-size: cover; /* This is the correct property to make the image cover the entire area without distorting, cropping if needed */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-attachment: scroll; /* Use 'fixed' for a parallax effect, 'scroll' for normal scrolling */
    
    /* Optional: Add an overlay for text readability, especially if the image is busy */
    background-blend-mode: overlay; /* Blends the background image with a color */
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay color. Adjust '0.4' for more/less darkness. */
}

.hero-container {
    /* This container holds your image and text, and will be centered by the header's flex properties */
    display: flex;
    flex-direction: column; /* Default to column for mobile: image on top, text below */
    align-items: center;   /* Center items horizontally in column layout (mobile) */
    text-align: center;    /* Center text within this container for mobile */
    
    width: 90%; /* Responsive width for the content box */
    max-width: 900px; /* Max width for the content box on larger screens */
    
    padding: 2.5rem; /* Good internal padding for content */
    /* background-color: rgba(255, 255, 255, 0.9); */
     /* Semi-transparent white background for the content box */
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    gap: 2rem; /* Space between the image and text/buttons */
}

.hero-image {
    /* This div holds your circular profile image */
    width: 180px; /* Default size for the circular image container */
    height: 180px;
    border-radius: 50%;
    overflow: hidden; /* Ensures the image stays within the circle */
    border: 5px solid var(--color-primary); /* Stylish border around the image */
    /* If you're using an <img> tag inside hero-image, you don't need background-image here */
    /* background-image: url('assets/Snow.jpg'); */ /* Uncomment if Snow.jpg is the *background* of this circle */
    /* background-size: cover; */
    /* background-position: center; */
}

/* If you uncommented the <img> tag inside hero-image in HTML: */
.hero-image .img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle without distortion */
    border-radius: 50%; /* Make sure the img itself is also circular */
    display: block; /* Removes extra space below inline images */
}

.hero-text {
    /* Styles for the text content block */
    color: var(--color-secondary); /* Dark text color on light background */
    /* Remove padding-left/right here, it's better handled by hero-container's padding or max-width */
    padding: 0; /* Resetting unnecessary padding */
    width: 100%; /* Allows it to take full width within hero-container */
    text-align: center; /* Ensures text is centered for mobile/column layout */
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for heading */
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size for paragraph */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px; /* Constrain paragraph width for readability */
    margin-left: auto;
    margin-right: auto;
}

.buttons {
    display: flex;
    flex-direction: row; /* Stack buttons on mobile */
     /* Space between buttons */
    margin-top: 1rem;
}

/* Corrected .sno styles to apply to the button directly */
.sno.btn { /* Target the button with both classes */
    display: block; /* Ensure it's a block-level element */
    font-size: 1rem; /* Use a more standard font size */
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    letter-spacing: var(--letterSpacing); /* If you have this variable defined */
    width: 8rem; /* Fixed width for the button */
    text-align: center;
    margin: 0.5rem auto; /* Center button with vertical margin */
}

/* General button styles for .btn should already be defined (as provided in your full CSS) */
/* .btn { ... } */

/* Specific styling for the .sno button, usually on top of .btn */
.btn.sno {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white); /* Text color for the 'sno' button */
}

.btn.sno:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn.sno a {
    color: inherit; /* Ensure the link text inherits button color */
    text-decoration: none;
}
@media screen and (min-width: 48em) {
  .hero-container {
    grid-template-columns: 400px 1fr; 
  }

  .hero-container text {
    padding-top: 5rem;
    margin: 1rem auto;
  }
}

/* ================== Services ================== */
.services__container-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ================== Services End ================== */

/* ================== Gallery ================== */
.exhibition {
  width: 100%;
}

.exhibition__container-art {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  border: none;
}

.exhibition__container-art img {
    width: 392px; 
    height: 392px; 
    object-fit: cover;
    display: block; 
    transition: transform 0.4s ease-in-out;
    border: 5px solid var(--primary-500);
    border-radius: 8px;
    margin-bottom: 0.5rem;    
}

.exhibition__container-art img:hover {
  transform: rotateY(90deg);
}

/* ================== Gallery End ================== */

/* ================== FAQ ================== */
.faq__container {
  border: none;
}

.faqs {
  max-width: 75%;
  margin: auto;
}

.faqs > p {
  margin: 1.5rem 0;
  text-align: center;
}

.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
  font-size: 1.6rem;
}

.active,
.accordion:hover {
  background-color: #f1f7f5;
}
.pannel {
  padding: 0 2rem 2.5rem 2rem;
  background-color: white;
  overflow: hidden;
  background-color: #f1f7f5;
  display: none;
}
.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.4;
}

.faq {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}
.faq.active {
  border: none;
}

/* ================== FAQ End ================== */

/* ================== Contact ================== */
#contact {
  width: 90vw;
  max-width: var(--max-width);
  margin: 0 auto; */
  padding-top: 1rem;
  /* min-height: calc(100vh - (6rem + 4rem)); */
  background-color: #282a32;
}
.contact-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; 
}

.get-in-touch p {
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
  color: var(--primary-500);
}

.social-media {
  display: flex;
  /* justify-content: center;
  align-items: center; */
  gap: 1.5rem; /* Space between icons */
  /* margin-bottom: 0.5rem; */
}

.sa-icons {
  color: var(--color-white);
  font-size: 2rem; /* Size of social icons */
  transition: var(--transition);
}

.sa-icons:hover {
  color: var(--color-primary); /* Hover color for social icons */
}
.contact-right {
  background-color: #1a1a1a;
  padding: 1rem;
  color: #f1f5f9;
  border-radius: 8px;
}

form {
  margin-top: 1.5rem; 
}
 
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #fff;
}

.form-group input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  background: #1a1a1a;
  color: #f0f0f0;
}

.form-group input:hover {
  border: 1px solid var(--primary-500);
}

.form-group textarea {
  display: block;
  width: 100%;
  min-height: 200px;
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 1rem 1.2rem;
  border: 1px solid #444;
  border-radius: 8px;
}

.form-group textarea:hover {
  border: 5px solid var(--primary-500);
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
}
/* ================== Contact End ================== */

/* 
==================
Footer
==================
*/



/* 
==================
Footer
==================
*/
footer {
  background-color: #2a2a2a;
  font-size: 1.25rem;
}
.page-footer {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-footer p {
  margin-bottom: 0;
}
.footer-logo, .page-footer a {
  color: var(--primary-500);
}


/* 
==================
Error
==================
*/

.error-page {
  text-align: center;
  padding-top: 5rem;
}

.error-page h1 {
  font-size: 9rem;
}

/* 
==================
Exhibition (II)
==================
*/

.exhibitions {
  border-radius: var(--borderRadius);
  margin-bottom: 1rem;
}

/* 
==================
Contact (III)
==================
*/

@media screen and (min-width: 36em) {
  
}

@media screen and (min-width: 62em) {

}

@media screen and (min-width: 75em) {

}










