/* main CSS styles for the My Photos page */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #F2EFE7;
  --color-bg-secondary: #9ACBD0;
  --color-accent: #48A6A7;
  --color-primary: #006A71;
  --color-white: #fff;
  --color-dark: #333;
  --color-light-gray: #e0e0e0;
  --color-premium: #FFD700; /* Gold color for premium */
  --color-free: #C0C0C0; /* Silver color for free */
  --radius: 12px;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --font-main: 'Segoe UI', sans-serif;
  --border-radius: 12px;

  /* Font Sizes (Desktop Default) */
  --font-h1: 3rem;
  --font-h2: 2.5rem;
  --font-h3: 2rem;
  --font-h4: 1.75rem;
  --font-h5: 1.5rem;
  --font-h6: 1.25rem;
  --font-body: 1rem;
  --font-small: 0.875rem;
  

}

/* Responsive Font Sizes: Tablets */
@media (max-width: 992px) {
  :root {
    --font-h1: 2.5rem;
    --font-h2: 2rem;
    --font-h3: 1.75rem;
    --font-h4: 1.5rem;
    --font-h5: 1.25rem;
    --font-h6: 1.125rem;
    --font-body: 0.95rem;
    --font-small: 0.8rem;
  }
}

/* Responsive Font Sizes: Mobile */
@media (max-width: 576px) {
  :root {
    --font-h1: 2rem;
    --font-h2: 1.75rem;
    --font-h3: 1.5rem;
    --font-h4: 1.25rem;
    --font-h5: 1.125rem;
    --font-h6: 1rem;
    --font-body: 0.625rem;
    --font-small: 0.75rem;
    
  }
}


h1 { font-size: var(--font-h1); }
h2 { font-size: var(--font-h2); }
h3 { font-size: var(--font-h3); }
h4 { font-size: var(--font-h4); }
h5 { font-size: var(--font-h5); }
h6 { font-size: var(--font-h6); }

p {
  font-size: var(--font-body);
  margin-bottom: 1rem;
}

a {
  font-size: var(--font-body);
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
 }

 
 

.main-content {
      display: flex;
      justify-content: center;
      align-items: flex-start; /* Use center for vertical center */
      min-height: 100vh;
      padding: 2rem;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      padding: 2rem;
      border-radius: 12px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.9rem;
        color: var(--color-accent);
        margin-bottom: 1rem;
    }

@media (max-width:500px){
    .main-content {
        padding: 1rem;
        margin-left : 78px;
    }
    .container {
        padding: 1rem;
    }
}

@media (min-width:360px){
    .main-content {
        padding: 5px;
        margin-left : 78px;
    }
    .container {
        padding: 5px;
    }
}

/* Deactivate Account Page Styles */
.deactivate-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.deactivate-warning {
    background-color: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.deactivate-warning h2 {
    color: #e65100;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.deactivate-warning ul {
    list-style-type: none;
    padding: 0;
}

.deactivate-warning li {
    color: #424242;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.deactivate-warning li:before {
    content: "•";
    color: #e65100;
    position: absolute;
    left: 0;
}

.deactivate-form .form-group {
    margin-bottom: 1.5rem;
}

.deactivate-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 500;
}

.deactivate-form select,
.deactivate-form textarea,
.deactivate-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-bg-secondary);
    border-radius: 4px;
    font-family: inherit;
}

.deactivate-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-danger:hover {
    background-color: #c82333;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}